Eu uso um trabalho cron para chamar a offlineimap
cada 2 minutos:
*/2 * * * * /usr/bin/offlineimap > ~/Maildir/offlineimap.log 2>&1
Eu precisava matar o trabalho cron para corrigir um problema. Como posso então reiniciar o trabalho cron (sem reiniciar)? Encontrei esta 'solução' online:
mylogin@myhost:~$ sudo /etc/init.d/cron restart
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service cron restart
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the stop(8) and then start(8) utilities,
e.g. stop cron ; start cron. The restart(8) utility is also available.
cron stop/waiting
cron start/running, process 26958
No entanto, usando ps -ef | grep ...
, não vejo o trabalho ... O que há de errado?
crontab
, comentário que trabalho, realizar a sua manutenção e, em seguida, uncomment-lo ...