-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from hw-cookbooks/cookstyle_bot/cookstyle_6_17_5
Signed-off-by: Tim Smith <[email protected]>
- Loading branch information
Showing
5 changed files
with
62 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
cookbook "apt" | ||
cookbook "yum" | ||
cookbook "git" | ||
cookbook "build-essential" | ||
cookbook "python" | ||
cookbook "runit" | ||
cookbook "statsite", :path => "." | ||
cookbook 'apt' | ||
cookbook 'yum' | ||
cookbook 'git' | ||
cookbook 'build-essential' | ||
cookbook 'python' | ||
cookbook 'runit' | ||
cookbook 'statsite', path: '.' | ||
|
||
group :test do | ||
cookbook "graphite" | ||
cookbook 'graphite' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
source 'https://rubygems.org' | ||
|
||
group :test do | ||
gem "test-kitchen", "~> 1.0.0.alpha.0" | ||
gem "kitchen-vagrant", "~> 0.6.0" | ||
gem "berkshelf", :github => "RiotGames/berkshelf" | ||
gem 'test-kitchen', '~> 1.0.0.alpha.0' | ||
gem 'kitchen-vagrant', '~> 0.6.0' | ||
gem 'berkshelf', github: 'RiotGames/berkshelf' | ||
end | ||
|
||
group :lxc do | ||
gem "kitchen-lxc", :git => "git://github.com/portertech/kitchen-lxc" | ||
gem 'kitchen-lxc', git: 'git://github.com/portertech/kitchen-lxc' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
default[:statsite][:path] = "/opt/statsite" | ||
default[:statsite][:repo] = "git://github.com/armon/statsite.git" | ||
default[:statsite][:ref] = "HEAD" | ||
default[:statsite][:conf] = "/etc/statsite.conf" | ||
default[:statsite][:owner] = "statsite" | ||
default[:statsite][:group] = "statsite" | ||
default[:statsite][:path] = '/opt/statsite' | ||
default[:statsite][:repo] = 'git://github.com/armon/statsite.git' | ||
default[:statsite][:ref] = 'HEAD' | ||
default[:statsite][:conf] = '/etc/statsite.conf' | ||
default[:statsite][:owner] = 'statsite' | ||
default[:statsite][:group] = 'statsite' | ||
default[:statsite][:port] = 8125 | ||
default[:statsite][:loglevel] = "INFO" | ||
default[:statsite][:loglevel] = 'INFO' | ||
default[:statsite][:flush_interval] = 10 | ||
default[:statsite][:timer_eps] = 0.01 | ||
default[:statsite][:stream_command] = "" | ||
default[:statsite][:stream_command] = '' | ||
|
||
default[:statsite][:service_type] = "runit" | ||
default[:statsite][:service_type] = 'runit' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
maintainer "Heavy Water Ops, Inc" | ||
maintainer_email "[email protected]" | ||
license "Apache 2.0" | ||
description "Installs/Configures statsite" | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
name "statsite" | ||
version "0.0.3" | ||
maintainer 'Heavy Water Ops, Inc' | ||
maintainer_email '[email protected]' | ||
license 'Apache-2.0' | ||
description 'Installs/Configures statsite' | ||
name 'statsite' | ||
version '0.0.3' | ||
|
||
depends "git" | ||
depends "build-essential" | ||
depends "python" | ||
depends "runit" | ||
depends 'git' | ||
depends 'python' | ||
depends 'runit' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters