diff --git a/launch.py b/launch.py index d9c06489a98cc5258929fda1405be1d46dd9007f..94a915d7843e35f03cbe5a5d77c2c85a7c5c6f2d 100755 --- a/launch.py +++ b/launch.py @@ -113,10 +113,26 @@ def write_crontab(every_min=5): f.write(crontab) f.flush() f.close() - cmd = 'crontab %s' % fpath + + # does the current crontab already exist? + cmd = 'crontab -l' p = sproc.Popen(cmd, stdout=sproc.PIPE, stderr=sproc.STDOUT, shell=True) stdout = p.stdout.readlines() p.wait() + crontab_exists = False + for line in stdout: + if line.find(cwd) > -1 and line.find(launch) > -1: + # current crontab job is already running! + crontab_exists = True + break + + if not crontab_exists: + cmd = 'crontab %s' % fpath + p = sproc.Popen(cmd, stdout=sproc.PIPE, stderr=sproc.STDOUT, shell=True) + stdout = p.stdout.readlines() + p.wait() + print "added launch.py to crontab:" + print crontab def remove_crontab(): cmd = 'crontab -r'