5 # Copyright 2010, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
22 chef_package = "chef_#{node[:chef][:client][:version]}_amd64.deb"
24 chef_platform = case node[:platform_version]
25 when "12.10" then "12.04"
26 else node[:platform_version]
29 directory "/var/cache/chef" do
35 Dir.glob("/var/cache/chef/chef_*.deb").each do |deb|
36 if deb != "/var/cache/chef/#{chef_package}"
44 remote_file "/var/cache/chef/#{chef_package}" do
45 source "https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/#{chef_platform}/x86_64/#{chef_package}"
52 dpkg_package "chef" do
53 source "/var/cache/chef/#{chef_package}"
54 version node[:chef][:client][:version]
57 template "/etc/init/chef-client.conf" do
58 source "chef-client.conf.erb"
64 directory "/etc/chef" do
70 template "/etc/chef/client.rb" do
71 source "client.rb.erb"
77 file "/etc/chef/client.pem" do
83 template "/etc/chef/report.rb" do
84 source "report.rb.erb"
90 template "/etc/logrotate.d/chef" do
91 source "logrotate.erb"
97 directory "/etc/chef/ohai" do
103 directory "/var/log/chef" do
109 service "chef-client" do
110 provider Chef::Provider::Service::Upstart
111 action [ :enable, :start ]
112 supports :status => true, :restart => true, :reload => true
113 subscribes :restart, "dpkg_package[chef]"
114 subscribes :restart, "template[/etc/init/chef-client.conf]"
115 subscribes :restart, "template[/etc/chef/client.rb]"
116 subscribes :restart, "template[/etc/chef/report.rb]"