• # /etc/crontab

    Posté par . En réponse au message Comment paramètrer les CRONTAB. Évalué à 3.

    Dans /etc/crontab tu dois avoir quelque chose comme

    # m h dom mon dow user command
    17 * * * * root cd / && run-parts --report /etc/cron.hourly
    25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
    47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
    52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )


    Il te suffit de changer les heures.

    Crond rechargera même tout seul le fichier une fois que tu l'auras modifié sans redémarrage.