fenrir/play zone/daemon.py

13 lines
198 B
Python
Raw Normal View History

2018-07-20 20:04:44 -04:00
from time import sleep
from daemonize import Daemonize
pid = "/tmp/test.pid"
def main():
while True:
sleep(5)
daemon = Daemonize(app="test_app", pid=pid, action=main)
daemon.start()