Created
December 27, 2013 14:07
-
-
Save tomvachon/8147336 to your computer and use it in GitHub Desktop.
Upstart example
This file contains 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
start on runlevel [2345] | |
stop on runlevel [06] | |
#should i reboot it for you if it crashes? | |
respawn | |
# reboot it 4 times wait 5 seconds | |
respawn limit 4 5 | |
#If your proc forks uncomment | |
#expect fork | |
#if your proc double forks uncomment | |
#expect daemon | |
exec /run/your/daemon here -justlike the -command line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment