Skip to content

Instantly share code, notes, and snippets.

@AvianFlu
Created February 8, 2014 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AvianFlu/8889521 to your computer and use it in GitHub Desktop.
Save AvianFlu/8889521 to your computer and use it in GitHub Desktop.
Example upstart script
#!upstart
description "awesome bot"
start on startup
stop on shutdown
script
echo $$ >> /var/run/awesomebot.pid
exec node /var/bots/awesome.js >> /var/log/awesomebot.log 2>&1
end script
respawn
pre-stop script
rm -f /var/run/awesomebot.pid
end script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment