commit message from python script
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import os, shutil, sys
|
import os, shutil, sys
|
||||||
|
|
||||||
from crontab import CronTab
|
#from crontab import CronTab
|
||||||
|
|
||||||
def search_str(file_path, word):
|
def search_str(file_path, word):
|
||||||
with open(file_path, 'r') as file:
|
with open(file_path, 'r') as file:
|
||||||
@@ -37,16 +37,16 @@ try:
|
|||||||
except FileExistsError:
|
except FileExistsError:
|
||||||
print("File konnte nicht kopiert werden")
|
print("File konnte nicht kopiert werden")
|
||||||
|
|
||||||
cron = CronTab(user=os.environ["USER"])
|
#cron = CronTab(user=os.environ["USER"])
|
||||||
basic_iter = cron.find_command(user_bin + os.sep + "pull_and_push >> " + my_logfile)
|
#basic_iter = cron.find_command(user_bin + os.sep + "pull_and_push >> " + my_logfile)
|
||||||
for item in basic_iter:
|
#for item in basic_iter:
|
||||||
if str(item) == basic_command:
|
# if str(item) == basic_command:
|
||||||
print("crontab job already exist", item)
|
# print("crontab job already exist", item)
|
||||||
is_exist=True
|
# is_exist=True
|
||||||
break
|
# break
|
||||||
|
|
||||||
if not is_exist:
|
#if not is_exist:
|
||||||
#test
|
#test
|
||||||
cron_job = cron.new(user_bin + os.sep + "pull_and_push >> " + my_logfile)
|
# cron_job = cron.new(user_bin + os.sep + "pull_and_push >> " + my_logfile)
|
||||||
cron_job.every(10).hours()
|
# cron_job.every(10).hours()
|
||||||
cron.write()
|
# cron.write()
|
||||||
Reference in New Issue
Block a user