ここで説明するテンプレートpythonデーモンを2つの異なるスクリプトで使用して、2つの別々のデーモンを起動しています。それらを1つのロックファイルなどを持つ1つのデーモンスクリプトに結合したいと思います。ただし、ループタイマーはそれぞれ1分と5分で異なります。私はこれから始めています:
import os
import subprocess
import time
from daemon import runner
class App():
def __init__(self):
self.stdin_path = '/dev/null'
self.stdout_path = '/dev/tty'
self.stderr_path = '/dev/tty'
self.pidfile_path = '/tmp/test.pid'
self.pidfile_timeout = 5
def run(self):
try:
while True:
print "hello!"
# set the sleep time for repeated action here:
time.sleep(1)
except Exception, e:
raise
app = App()
daemon_runner = runner.DaemonRunner(app)
daemon_runner.do_action()
当然のことは別のクラスを作成することですが、pidfileのような基本的なものは一定のままにしておきたいです。