I have the following service resource defined in my recipe.
service "unicorn_#{app['id']}" do
provider Chef::Provider::Service::Init::Debian
start_command "#{app['deploy_to']}/shared/scripts/unicorn start"
stop_command "#{app['deploy_to']}/shared/scripts/unicorn stop"
restart_command "#{app['deploy_to']}/shared/scripts/unicorn restart"
status_command "#{app['deploy_to']}/shared/scripts/unicorn status"
supports :start => true, :stop => true, :restart => true, :status => true
action :nothing
end
But its not creating that file.
I'm on chef-0.10.8 with ruby19