commit message from python script
This commit is contained in:
@@ -17,6 +17,10 @@ def search_str(file_path, word):
|
||||
|
||||
user_bin = os.environ["HOME"] + os.sep + "bin"
|
||||
user_zshrc = os.environ["HOME"] + "/.zshrc"
|
||||
my_logfile = os.sep + "var" + os.sep + "log" + os.sep + "pull_and_push.log"
|
||||
basic_command = "* */17 * * * pull_and_push >> " + my_logfile
|
||||
print(basic_command)
|
||||
is_exist = False
|
||||
|
||||
if not os.path.exists(user_bin):
|
||||
os.mkdir(user_bin)
|
||||
@@ -34,6 +38,15 @@ except FileExistsError:
|
||||
print("File konnte nicht kopiert werden")
|
||||
|
||||
cron = CronTab(user=os.environ["USER"])
|
||||
cron_job = cron.new(command='pull_and_push >> /var/log/pull_and_push.log')
|
||||
cron_job.hours.every(17)
|
||||
cron.write()
|
||||
basic_iter = cron.find_command("pull_and_push >> " + my_logfile)
|
||||
for item in basic_iter:
|
||||
if str(item) == basic_command:
|
||||
print("crontab job already exist", item)
|
||||
is_exist=True
|
||||
break
|
||||
|
||||
if not is_exist:
|
||||
|
||||
cron_job = cron.new(command="pull_and_push >> " + my_logfile)
|
||||
cron_job.hours.every(17)
|
||||
cron.write()
|
||||
Reference in New Issue
Block a user