merari42@lemmy.world to Programmer Humor@programming.dev · 2 days agoWorks if manually restarted by an intern from time to timelemmy.worldexternal-linkmessage-square56fedilinkarrow-up1637arrow-down14
arrow-up1633arrow-down1external-linkWorks if manually restarted by an intern from time to timelemmy.worldmerari42@lemmy.world to Programmer Humor@programming.dev · 2 days agomessage-square56fedilink
minus-squaremarcos@lemmy.worldlinkfedilinkarrow-up7·2 days agoMake the rule start a secondary cron system. Otherwise it won’t run after you erase the crontab.
minus-squaredondelelcaro@lemmy.worldlinkfedilinkarrow-up6·edit-22 days agoHere you go: with-lock-ex -q /path/to/lockfile sh -c ' while true; do crontab cronfile; sleep 60; done;'
Make the rule start a secondary cron system. Otherwise it won’t run after you erase the crontab.
Here you go:
with-lock-ex -q /path/to/lockfile sh -c ' while true; do crontab cronfile; sleep 60; done;'