# limitations under the License.
#
-chef_gem "pony"
+chef_gem "pony" do
+ compile_time false
+end
chef_package = "chef_#{node[:chef][:client][:version]}_amd64.deb"
-chef_platform = case node[:platform_version]
- when "12.10" then "12.04"
- when "14.04" then "13.04"
- else node[:platform_version]
- end
-
directory "/var/cache/chef" do
owner "root"
group "root"
end
remote_file "/var/cache/chef/#{chef_package}" do
- source "https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/#{chef_platform}/x86_64/#{chef_package}"
+ source "https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/10.04/x86_64/#{chef_package}"
owner "root"
group "root"
mode 0644
version node[:chef][:client][:version]
end
-template "/etc/init/chef-client.conf" do
- source "chef-client.conf.erb"
- owner "root"
- group "root"
- mode 0644
-end
-
directory "/etc/chef" do
owner "root"
group "root"
mode 0755
end
-service "chef-client" do
- provider Chef::Provider::Service::Upstart
- action [:enable, :start]
- supports :status => true, :restart => true, :reload => true
- subscribes :restart, "dpkg_package[chef]"
- subscribes :restart, "template[/etc/init/chef-client.conf]"
- subscribes :restart, "template[/etc/chef/client.rb]"
- subscribes :restart, "template[/etc/chef/report.rb]"
+if node[:lsb][:release].to_f >= 15.10
+ execute "systemctl-daemon-reload" do
+ action :nothing
+ command "systemctl daemon-reload"
+ end
+
+ template "/etc/systemd/system/chef-client.service" do
+ source "chef-client.service.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ notifies :run, "execute[systemctl-daemon-reload]"
+ end
+
+ service "chef-client" do
+ provider Chef::Provider::Service::Systemd
+ action [:enable, :start]
+ supports :status => true, :restart => true, :reload => true
+ subscribes :restart, "dpkg_package[chef]"
+ subscribes :restart, "template[/etc/systemd/system/chef-client.service]"
+ subscribes :restart, "template[/etc/chef/client.rb]"
+ subscribes :restart, "template[/etc/chef/report.rb]"
+ end
+else
+ template "/etc/init/chef-client.conf" do
+ source "chef-client.conf.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ end
+
+ service "chef-client" do
+ provider Chef::Provider::Service::Upstart
+ action [:enable, :start]
+ supports :status => true, :restart => true, :reload => true
+ subscribes :restart, "dpkg_package[chef]"
+ subscribes :restart, "template[/etc/init/chef-client.conf]"
+ subscribes :restart, "template[/etc/chef/client.rb]"
+ subscribes :restart, "template[/etc/chef/report.rb]"
+ end
end