Sha256: 351700ebd78653dfc5418304dbe5321036697488a4558e53788ed12c4d241e5c

Contents?: true

Size: 1.08 KB

Versions: 14

Compression:

Stored size: 1.08 KB

Contents

bash -c '
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 http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz
  tar zxf rubygems-1.3.7.tgz
  cd rubygems-1.3.7
  ruby setup.rb --no-format-executable
fi
gem install ohai chef --no-rdoc --no-ri --verbose <%= '--prerelease' if @config[:prerelease] %>

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

(
cat <<'EOP'
log_level        :info
log_location     STDOUT
chef_server_url  "<%= Chef::Config[:chef_server_url] %>"
validation_client_name "<%= Chef::Config[:validation_client_name] %>"
<% if @config[:chef_node_name] == nil %>
# Using default node name"
<% else %>
node_name "<%= @config[:chef_node_name] %>"
<% end %> 
EOP
) > /etc/chef/client.rb

(
cat <<'EOP'
<%= { "run_list" => @run_list }.to_json %>
EOP
) > /etc/chef/first-boot.json

/usr/bin/chef-client -j /etc/chef/first-boot.json'

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
naked-chef-0.9.15.3 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
naked-chef-0.9.15.2 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
naked-chef-0.9.15.1 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.14 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.14.rc.1 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
mbailey-chef-0.9.12.2 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.14.beta.1 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
mbailey-chef-0.9.12.1 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.12 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.10 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.10.rc.3 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.10.rc.2 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.10.rc.1 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
chef-0.9.10.rc.0 lib/chef/knife/bootstrap/ubuntu10.04-gems.erb