kitchenplan 2.1.3 → 2.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/kitchenplan/cli.rb +3 -3
- data/templates/Cheffile.erb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ddc708607f22c7f6f13d69c84d6bac82798938d
|
4
|
+
data.tar.gz: 195054556f9e98449814e70b1016c046b935dc3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecb562bc35c0542c9849297b778ce62bc3ba1bb2e83e56365fc0833e9cbd1853bdcf26a072c1d15a3767ca7663981fab28c7772b9819588e677934d44da0543a
|
7
|
+
data.tar.gz: 80e55340374feb1aa852d88adbf77c9373cf2a629496999b01b7a31b42a4912de6d2ba3c7a985f2c4cce7b13e281267be921efb6c13a3c8a27e9f4e7a552aa51
|
data/lib/kitchenplan/cli.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
require 'thor'
|
3
2
|
|
4
3
|
module Kitchenplan
|
@@ -42,7 +41,7 @@ module Kitchenplan
|
|
42
41
|
`kitchenplan provision` will use the configuration in /opt/kitchenplan (or <target directory>
|
43
42
|
if you pass it along) to provision your workstation using Chef.
|
44
43
|
|
45
|
-
You can optionally pass --debug to see more detail of what's
|
44
|
+
You can optionally pass --debug to see more detail of what's happening.
|
46
45
|
|
47
46
|
If you just want to install a few recipes pass them along with --recipes and it will override the run list (not the attributes!)
|
48
47
|
LONGDESC
|
@@ -100,7 +99,8 @@ module Kitchenplan
|
|
100
99
|
out.write(JSON.pretty_generate(config.config['attributes']))
|
101
100
|
end
|
102
101
|
File.open('tmp/solo.rb', 'w') do |out|
|
103
|
-
out.write("cookbook_path [ \"#{Dir.pwd}/vendor/cookbooks\" ]")
|
102
|
+
out.write("cookbook_path [ \"#{Dir.pwd}/vendor/cookbooks\" ]\n")
|
103
|
+
out.write("ssl_verify_mode :verify_peer")
|
104
104
|
end
|
105
105
|
return config.config['recipes']
|
106
106
|
end
|
data/templates/Cheffile.erb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
site "http://community.opscode.com/api/v1"
|
2
2
|
|
3
|
-
cookbook "homebrewalt", :github => "kitchenplan/chef-homebrewalt", :ref => "v1.8.
|
3
|
+
cookbook "homebrewalt", :github => "kitchenplan/chef-homebrewalt", :ref => "v1.8.3"
|
4
4
|
cookbook "nodejs", :github => "kitchenplan/chef-nodejs", :ref => "v1.1"
|
5
5
|
cookbook "applications", :github => "kitchenplan/chef-applications", :ref => "v2.0.2"
|
6
|
-
cookbook "osxdefaults", :github => "kitchenplan/chef-osxdefaults", :ref => "v1.0.
|
6
|
+
cookbook "osxdefaults", :github => "kitchenplan/chef-osxdefaults", :ref => "v1.0.2"
|
7
7
|
cookbook "dotfiles", :github => "kitchenplan/chef-dotfiles", :ref => "v1.1"
|
8
8
|
cookbook "drivers", :github => "kitchenplan/chef-drivers", :ref => "v1.0"
|
9
9
|
cookbook "sudoalt", :github => "kitchenplan/chef-sudoalt", :ref => "v2.4"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchenplan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roderik van der Veer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|