O que o CRONTAB está fazendo?

O que o CRONTAB está fazendo?

Isso é normal?

pi@RaspberryGate:~ $ grep CRON /var/log/syslog
Jul 28 06:17:04 RaspberryGate cron[370]: (CRON) INFO (pidfile fd = 3)
Jul 28 06:17:04 RaspberryGate cron[370]: (CRON) INFO (Running @reboot jobs)
Jul 28 06:34:14 RaspberryGate CRON[678]: (root) CMD (test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ))
Jul 28 06:17:04 RaspberryGate cron[368]: (CRON) INFO (pidfile fd = 3)
Jul 28 06:17:04 RaspberryGate cron[368]: (CRON) INFO (Running @reboot jobs)
Jul 28 06:47:41 RaspberryGate CRON[644]: (root) CMD (test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ))
Jul 28 06:17:04 RaspberryGate cron[371]: (CRON) INFO (pidfile fd = 3)
Jul 28 06:17:04 RaspberryGate cron[371]: (CRON) INFO (Running @reboot jobs)
Jul 28 07:16:24 RaspberryGate CRON[728]: (root) CMD (test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ))
Jul 28 07:17:01 RaspberryGate CRON[860]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jul 28 08:17:01 RaspberryGate CRON[2090]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)

Responder1

Se você está perguntando sobre entradas como

Jul 28 06:34:14 RaspberryGate CRON[678]: (root) CMD (test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ))

então sim, eles são normais -para sistemas baseados em Debian

Da DEBIAN SPECIFICseção de man cron:

O suporte para /etc/cron.hourly, /etc/cron.daily, /etc/cron.weekly e /etc/cron.monthly é fornecido no Debian através da configuração padrão do arquivo /etc/crontab (veja o arquivo exemplo em crontab(5)). O crontab padrão para todo o sistema contém quatro tarefas: executada a cada hora, todos os dias, todas as semanas e todos os meses.Cada uma dessas tarefas executará run-parts fornecendo cada um dos diretórios como argumento. Essas tarefas são desabilitadas se o anacron estiver instalado (exceto a tarefa horária) para evitar conflitos entre os dois daemons.

informação relacionada