Created
April 1, 2012 17:46
-
-
Save araddon/2277328 to your computer and use it in GitHub Desktop.
Salt-Minion Upstart Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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