stemcell 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/stemcell/templates/bootstrap.sh.erb +2 -1
- data/lib/stemcell/version.rb +1 -1
- metadata +1 -1
|
@@ -30,6 +30,7 @@ exec 2> /var/log/init.err
|
|
|
30
30
|
##
|
|
31
31
|
|
|
32
32
|
|
|
33
|
+
chef_version=11.4.0
|
|
33
34
|
repo_dir=/etc/chef/src
|
|
34
35
|
role=<%= @chef_role %>
|
|
35
36
|
origin=<%= @git_origin %>
|
|
@@ -67,7 +68,7 @@ get_instance_id() {
|
|
|
67
68
|
install_chef() {
|
|
68
69
|
if ! which chef-solo > /dev/null ; then
|
|
69
70
|
echo installing chef via omnibus...
|
|
70
|
-
curl -L --silent https://www.opscode.com/chef/install.sh | sudo bash -s -- -v
|
|
71
|
+
curl -L --silent https://www.opscode.com/chef/install.sh | sudo bash -s -- -v $chef_version 1>&2
|
|
71
72
|
# TODO(mkr): this is a hack to get chef-solo-search working
|
|
72
73
|
/opt/chef/embedded/bin/gem install --no-ri --no-rdoc treetop
|
|
73
74
|
else
|
data/lib/stemcell/version.rb
CHANGED