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 when "14.04" then "13.04"
27 else node[:platform_version]
30 directory "/var/cache/chef" do
36 Dir.glob("/var/cache/chef/chef_*.deb").each do |deb|
37 next if deb == "/var/cache/chef/#{chef_package}"
45 remote_file "/var/cache/chef/#{chef_package}" do
46 source "https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/#{chef_platform}/x86_64/#{chef_package}"
54 dpkg_package "chef" do
55 source "/var/cache/chef/#{chef_package}"
56 version node[:chef][:client][:version]
59 template "/etc/init/chef-client.conf" do
60 source "chef-client.conf.erb"
66 directory "/etc/chef" do
72 template "/etc/chef/client.rb" do
73 source "client.rb.erb"
79 file "/etc/chef/client.pem" do
85 template "/etc/chef/report.rb" do
86 source "report.rb.erb"
92 template "/etc/logrotate.d/chef" do
93 source "logrotate.erb"
99 directory "/etc/chef/trusted_certs" do
105 template "/etc/chef/trusted_certs/verisign.pem" do
106 source "verisign.pem.erb"
112 directory node[:ohai][:plugin_dir] do
118 directory "/var/log/chef" do
124 service "chef-client" do
125 provider Chef::Provider::Service::Upstart
126 action [:enable, :start]
127 supports :status => true, :restart => true, :reload => true
128 subscribes :restart, "dpkg_package[chef]"
129 subscribes :restart, "template[/etc/init/chef-client.conf]"
130 subscribes :restart, "template[/etc/chef/client.rb]"
131 subscribes :restart, "template[/etc/chef/report.rb]"