• # anacron

    Posté par (site web personnel) . En réponse au message une tâche cron pour un script de sauvegarde quotidien. Évalué à 8.

    anacron, pour les tâches que l'on veut lancer en gros une fois par jour / semaine / mois

    Anacron can be used to execute commands periodically, with a frequency specified in days. Unlike cron(8), it does not assume that the machine is running continuously. Hence, it can be used on machines that aren't running 24 hours a day, to control daily, weekly, and monthly jobs that are usually controlled by cron.

    Contrairement à cron qui le fait tous les jours à 6h25 sur une Debian :

    $ grep daily /etc/crontab
    25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )