Created
June 22, 2011 16:45
-
-
Save philk/1040512 to your computer and use it in GitHub Desktop.
Chef Template
This file contains hidden or 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
| # Put this below the other knife.rb stuff | |
| knife[:data_bag_secret_file] = '/Users/phil.kates/.chef/encrypted_data_bag_secret' |
This file contains hidden or 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
| bash -c ' | |
| <%= "export http_proxy=\"#{knife_config[:bootstrap_proxy]}\"" if knife_config[:bootstrap_proxy] -%> | |
| if [ ! -f /usr/bin/chef-client ]; then | |
| apt-get update | |
| apt-get install -y ruby ruby1.8-dev build-essential wget libruby-extras libruby1.8-extras | |
| cd /tmp | |
| wget <%= "--proxy=on " if knife_config[:bootstrap_proxy] %>http://production.cf.rubygems.org/rubygems/rubygems-1.8.5.tgz | |
| tar zxf rubygems-1.8.5.tgz | |
| cd rubygems-1.8.5 | |
| ruby setup.rb --no-format-executable | |
| fi | |
| gem update --system | |
| gem update | |
| gem install ohai --no-rdoc --no-ri --verbose | |
| gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %> | |
| 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 | |
| ( | |
| cat <<'EOP' | |
| <%= IO.read(knife_config[:data_bag_secret_file]) -%> | |
| EOP | |
| ) > /tmp/secret | |
| awk NF /tmp/secret > /etc/chef/encrypted_data_bag_secret | |
| rm /tmp/secret | |
| ( | |
| 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