Skip to content

Instantly share code, notes, and snippets.

@cwjohnston
Created April 25, 2012 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cwjohnston/2493780 to your computer and use it in GitHub Desktop.
Save cwjohnston/2493780 to your computer and use it in GitHub Desktop.
chef bootstraping template for ubuntu 12.04
bash -c '
if [ ! -f /usr/local/bin/chef-client ]; then
apt-get update
apt-get install build-essential ruby1.9.1-full -y
fi
#gem install rubygems-update
#update_rubygems
gem install ohai --no-rdoc --no-ri --verbose ruby-shadow
gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %>
mkdir -p /etc/chef
(
cat <<'EOP'
<%= IO.read(Chef::Config[: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
<%= start_chef %>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment