Browse Source

Fix issue

develop
Prabuddha Chakraborty 9 years ago
parent
commit
b5e53377eb
  1. 13
      ee/core/cron.py

13
ee/core/cron.py

@ -8,7 +8,7 @@ Set CRON on LINUX system.
class EECron(): class EECron():
def setcron_daily(self,cmd,comment='Cron set by EasyEngine',user='root',min=0,hour=12): def setcron_daily(self,cmd,comment='Cron set by EasyEngine',user='root',min=0,hour=12):
if not self.check_isexist(self,cmd): if not EEShellExec.cmd_exec(self, "crontab -l | grep -q \'{0}\'".format(cmd)):
tab = CronTab(user=user) tab = CronTab(user=user)
cron_job = tab.new(cmd, comment=comment) cron_job = tab.new(cmd, comment=comment)
cron_job.minute().on(min) cron_job.minute().on(min)
@ -16,12 +16,5 @@ class EECron():
#writes to crontab #writes to crontab
tab.write() tab.write()
Log.debug(self, "Cron is set:\n" + tab.render()) Log.debug(self, "Cron is set:\n" + tab.render())
else:
#Check if cron already exist Log.debug(self, "Cron already exist")
def check_isexist(self,cmd):
if EEShellExec.cmd_exec(self, "crontab -l | grep -q \'{0}\'".format(cmd)):
Log.debug(self, "Cron already exist")
return True
else:
return False

Loading…
Cancel
Save