Skip to content

Instantly share code, notes, and snippets.

@araddon
Created April 1, 2012 17:46
Show Gist options
  • Select an option

  • Save araddon/2277328 to your computer and use it in GitHub Desktop.

Select an option

Save araddon/2277328 to your computer and use it in GitHub Desktop.
Salt-Minion Upstart Script
# the salt-minion init script
description "Salt Minion"
start on (net-device-up
and local-filesystems
and runlevel [2345])
stop on runlevel [016]
respawn limit 10 5
script
exec /usr/bin/python /usr/bin/salt-minion > /var/log/saltminion.log 2>&1
end script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment