1 2 3 4 5 6 7
package 'nginx' cookbook_file '/etc/nginx/nginx.conf' do notifies :restart, 'service[nginx]' end service 'nginx' do action [:enable, :start] end