- 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]"
+ systemd_service "chef-client" do
+ description "Chef client"
+ after "network.target"
+ exec_start "/usr/bin/chef-client -i 1800 -s 20"
+ restart "on-failure"