Skip to content

Instantly share code, notes, and snippets.

@erlingwl
Created March 13, 2012 08:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erlingwl/2027622 to your computer and use it in GitHub Desktop.
Save erlingwl/2027622 to your computer and use it in GitHub Desktop.
Boostrap chef with Ruby 1.9.3
bash -c '
if [ ! -f /usr/local/bin/chef-client ]; then
apt-get update
sudo apt-get install -y build-essential zlib1g zlib1g-dev openssl libssl-dev libyaml-dev
cd /tmp
wget ftp://ftp.ruby-lang.org//pub/ruby/1.9/ruby-1.9.3-p125.tar.gz
tar xvf ruby-1.9.3-p125.tar.gz
cd ruby-1.9.3-p125
./configure
make
sudo make install
sudo gem update --system
gem update
gem install ohai --no-rdoc --no-ri --verbose
gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %>
fi
mkdir -p /etc/chef
(
cat <<'EOP'
<%= validation_key %>
EOP
) > /tmp/validation.pem
awk NF /tmp/validation.pem > /etc/chef/validation.pem
rm /tmp/validation.pem
<% if @chef_config[:encrypted_data_bag_secret] -%>
(
cat <<'EOP'
<%= encrypted_data_bag_secret %>
EOP
) > /tmp/encrypted_data_bag_secret
awk NF /tmp/encrypted_data_bag_secret > /etc/chef/encrypted_data_bag_secret
rm /tmp/encrypted_data_bag_secret
<% end -%>
(
cat <<'EOP'
<%= config_content %>
EOP
) > /etc/chef/client.rb
(
cat <<'EOP'
<%= { "run_list" => @run_list }.to_json %>
EOP
) > /etc/chef/first-boot.json
/usr/local/bin/chef-client -j /etc/chef/first-boot.json'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment