Skip to content

Instantly share code, notes, and snippets.

@fishnix
Created April 7, 2011 01:02
Show Gist options
  • Save fishnix/906846 to your computer and use it in GitHub Desktop.
Save fishnix/906846 to your computer and use it in GitHub Desktop.
service "thing" do
supports :status => true, :restart => true
action [ :enable, :start ]
only_if "test -f /etc/init.d/thing"
end
template "/etc/init.d/thing" do
source "thing.init.erb"
owner "root"
group "root"
mode 0755
backup 5
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment