All articles tagged Devops & Performance

Thumbnail image for The Joy of Upstart

The Joy of Upstart

Upstart is a ridiculously easy way to turn your scripts into daemons. Take this python script: /home/myuser/ez_daemon.py: import time while 1: print("I'm a daemon!") time.sleep(1) We&#8217;re going to turn it into a daemon with <strong>a single line</strong>: /etc/init/ez_daemon.conf: exec python …