Skip to content

Instantly share code, notes, and snippets.

@anveo
Created September 10, 2013 18:58
Show Gist options
  • Save anveo/6513975 to your computer and use it in GitHub Desktop.
Save anveo/6513975 to your computer and use it in GitHub Desktop.
bash -c '
<%= "export http_proxy=\"#{knife_config[:bootstrap_proxy]}\"" if knife_config[:bootstrap_proxy] -%>
export DEBIAN_FRONTEND=noninteractive
aptitude update
aptitude dist-upgrade -y -q
aptitude install -y -q build-essential binutils-doc gcc autoconf flex bison git-core
aptitude install -y -q libreadline6-dev zlib1g-dev libssl-dev libxml2-dev libxslt1-dev libcurl4-gnutls-dev
aptitude install -y -q cowsay fortune-mod htop toilet
# output some wisdom before long running actions
wisdom ()
{
/usr/games/cowsay -f `ls /usr/share/cowsay/cows | shuf -n1` `/usr/games/fortune`
}
cd /root
git clone git://github.com/sstephenson/ruby-build.git
cd ruby-build
git checkout v20130907
sh install.sh
wisdom
CONFIGURE_OPTS="--disable-install-rdoc" MAKE_OPTS="-j `nproc`" ruby-build 1.9.3-p392 /usr/local
gem update --system
gem update --no-rdoc --no-ri
gem install ohai --no-rdoc --no-ri --verbose
gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %>
mkdir -p /etc/chef
awk NF > /etc/chef/validation.pem <<'EOP'
<%= validation_key %>
EOP
chmod 0600 /etc/chef/validation.pem
<% if @chef_config[:encrypted_data_bag_secret] -%>
awk NF > /etc/chef/encrypted_data_bag_secret <<'EOP'
<%= encrypted_data_bag_secret %>
EOP
chmod 0600 /etc/chef/encrypted_data_bag_secret
<% end -%>
<%# Generate Ohai Hints -%>
<% unless @chef_config[:knife][:hints].nil? || @chef_config[:knife][:hints].empty? -%>
mkdir -p /etc/chef/ohai/hints
<% @chef_config[:knife][:hints].each do |name, hash| -%>
cat > /etc/chef/ohai/hints/<%= name %>.json <<'EOP'
<%= hash.to_json %>
EOP
<% end -%>
<% end -%>
cat > /etc/chef/client.rb <<'EOP'
<%= config_content %>
EOP
cat > /etc/chef/first-boot.json <<'EOP'
<%= first_boot.to_json %>
EOP
<%= start_chef %>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment