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 action :create_if_missing
46 source "https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/#{chef_platform}/x86_64/#{chef_package}"
53 dpkg_package "chef" do
54 source "/var/cache/chef/#{chef_package}"
55 version node[:chef][:client][:version]
58 template "/etc/init/chef-client.conf" do
59 source "chef-client.conf.erb"
65 directory "/etc/chef" do
71 template "/etc/chef/client.rb" do
72 source "client.rb.erb"
78 file "/etc/chef/client.pem" do
84 template "/etc/chef/report.rb" do
85 source "report.rb.erb"
91 template "/etc/logrotate.d/chef" do
92 source "logrotate.erb"
98 directory "/etc/chef/ohai" do
104 directory "/var/log/chef" do
110 service "chef-client" do
111 provider Chef::Provider::Service::Upstart
112 action [ :enable, :start ]
113 supports :status => true, :restart => true, :reload => true
114 subscribes :restart, "dpkg_package[chef]"
115 subscribes :restart, "template[/etc/init/chef-client.conf]"
116 subscribes :restart, "template[/etc/chef/client.rb]"
117 subscribes :restart, "template[/etc/chef/report.rb]"