end
remote_file "/var/cache/chef/#{chef_package}" do
- source "https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/10.04/x86_64/#{chef_package}"
+ source "https://packages.chef.io/stable/ubuntu/10.04/#{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
+ systemd_service "chef-client" do
+ description "Chef client"
+ after "network.target"
+ exec_start "/usr/bin/chef-client -i 1800 -s 20"
+ restart "on-failure"
+ 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, "systemd_service[chef-client]"
+ 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