Pages : 1
#1 Le 12/02/2020, à 16:51
- tojac
anacron
Bonjour,
Probablement une question bête, je voudrais utiliser anacron, mais je n'y arrive pas, il ne fait rien...
Voici le anacrontab
# /etc/anacrontab: configuration file for anacron
# See anacron(8) and anacrontab(5) for details.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
HOME=/root
LOGNAME=root
# These replace cron's entries
1 5 cron.daily run-parts --report /etc/cron.daily
7 10 cron.weekly run-parts --report /etc/cron.weekly
@monthly 15 cron.monthly run-parts --report /etc/cron.monthly
@daily 1 /home/fred/test.sh
Je suis sous ubuntu studio donc xfce
Merci d'avance pour vos conseils
Hors ligne
#2 Le 12/02/2020, à 17:26
- bruno
Re : anacron
Bonjour,
Tu veux l'utiliser pour faire quoi ?
anacron fait exactement ce qui est configuré dans le fichier /etc/anacrontab, il vérifie si les tâches cron, quotidiennes, hebdomadaires et mensuelles ont bien été lancés et les exécute le cas échéant.
#3 Le 12/02/2020, à 18:09
- tojac
Re : anacron
je veux l'utiliser pour faire un backup quotidien avec borg.
Comme ça ne fonctionnait pas , j'ai fait un tout petit script (test.sh tout en bas du anacrontab) qui écrit la date dans un fichier, mais le fichier n'est jamais modifié.
(je suis débutant en la matière, mais j'ai vérifié le script fonctionne dans un terminal)
Hors ligne
#4 Le 12/02/2020, à 18:58
- grandtoubab
Re : anacron
inutile de modifier ( voir casser) anacrontab, les scripts à lancer quotidiennement se mettent directement dans /etc/cron.daily y compris ceux qu'on code soi-meme
/etc/cron.daily$ ls -alrt
total 60
-rwxr-xr-x 1 root root 355 oct. 17 2014 bsdmainutils
-rw-r--r-- 1 root root 102 juin 11 2015 .placeholder
-rwxr-xr-x 1 root root 384 août 25 2016 cracklib-runtime
-rwxr-xr-x 1 root root 311 nov. 5 2017 0anacron
-rwxr-xr-x 1 root root 543 nov. 14 2018 mlocate
-rwxr-xr-x 1 root root 1187 janv. 23 2019 dpkg
-rwxr-xr-x 1 root root 1123 févr. 10 2019 man-db
-rwxr-xr-x 1 root root 4006 sept. 6 15:15 tmpreaper
-rwxr-xr-x 1 root root 4722 nov. 10 13:37 exim4-base
-rwxr-xr-x 1 root root 663 janv. 30 09:42 ze-test-kernel-installed
exemple
ze-test-kernel-installed
#!/bin/sh
# pour tracer demasquer set -x
#set -x
# pas de prise en compte des messages d'erreur
exec 2>/dev/null
#
date
echo "*********************************************************************************************"
apt list linux-image*amd64* | grep install
echo "*********************************************************************************************"
apt list linux-headers*amd64* | grep install
echo "*********************************************************************************************"
apt list linux-headers*common* | grep install
echo "*********************************************************************************************"
date
Quotidiennement ça veut dire une seule fois par jour et 1 5 ça veut dire 5 mn après le 1er boot
pour tester et relancer à la demande il faut supprimer les infos d'horodatage stockées par anacron
voir les explications ici
https://bidouilledebian.wordpress.com/2 … e-insulte/
Dernière modification par grandtoubab (Le 12/02/2020, à 19:14)
Linux tout seul sur HP Pavilion DV7 et Acer Aspire T650, Canon MG3650 en wifi
Debian 11 Bullseye Gnome/Xorg, Gnome/Wayland avec SDDM
https://bidouilledebian.wordpress.com/
ON M'A VU DANS LE VERCORS, SAUTER A L'ELASTIQUE..... J'AI DANS LES BOTTES DES MONTAGNES DE QUESTIONS....
Hors ligne
#5 Le 12/02/2020, à 20:38
- tojac
Re : anacron
ok, merci, je vais tester ça !
Hors ligne
#6 Le 13/02/2020, à 07:00
- tojac
Re : anacron
Bon, ça ne marche toujours pas...
Première erreur de ma part, j'avais oublié de mettre les droits pour l'execution de mon script...
Après rectification toujours pas de changement ! Pourtant anacron semble bien faire le boulot.
fred@fred-System-Product-Name:~$ journalctl -xb | grep -i cron
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Trigger anacron every hour.
-- Subject: L'unité (unit) anacron.timer a terminé son démarrage
-- L'unité (unit) anacron.timer a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Anacron 2.3 started on 2020-02-13
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.daily' in 5 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.weekly' in 10 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.monthly' in 15 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Jobs will be executed sequentially
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (pidfile fd = 3)
-- Subject: L'unité (unit) cron.service a terminé son démarrage
-- L'unité (unit) cron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (Running @reboot jobs)
févr. 13 06:33:01 fred-System-Product-Name anacron[959]: Job `cron.daily' started
févr. 13 06:33:01 fred-System-Product-Name anacron[3028]: Updated timestamp for job `cron.daily' to 2020-02-13
févr. 13 06:33:29 fred-System-Product-Name anacron[959]: Job `cron.daily' terminated
Si je lance mon script avec cron, ça fonctionne, avec le script dans mon home ou dans cron.daily ci-dessous crontab
GNU nano 4.3 /tmp/crontab.rxj5zB/crontab
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').
#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
21 6 * * * /home/fred/test.sh
47 6 * * * /etc/cron.daily/test.sh
pour info, le script de test, on ne sait jamais :
date >> /home/fred/logtest.txt
Hors ligne
#7 Le 13/02/2020, à 15:12
- bruno
Re : anacron
Si cela fonctionne avec cron, cela doit aussi fonctionner avec anacron.
/etc/cron.daily/test.sh doit être exécutable et appartenir à root et contenir :
#!/bin/bash
/bin/date >> /home/fred/logtest.txt
N.B. : tu peux forcer l'exécution immédiate des tâches anacron avec :
sudo anacron -f -n
Dernière modification par bruno (Le 13/02/2020, à 18:39)
#8 Le 13/02/2020, à 15:31
- jplemoine
Re : anacron
Perso, je mettrais plutôt :
/bin/date >> /home/fred/logtest.txt 2>&1
Ceci afin de traquer les erreurs.
Ce compte ne servira plus : vous pouvez le supprimer si le coeur vous en dit...
Laissé par l'auteur pour historique.
Hors ligne
#9 Le 13/02/2020, à 15:32
- jplemoine
Re : anacron
ou peut-être
/bin/date >> /home/fred/logtest.txt 2>>&1
Mais ça, je n'ai jamais fait.
Ce compte ne servira plus : vous pouvez le supprimer si le coeur vous en dit...
Laissé par l'auteur pour historique.
Hors ligne
#10 Le 13/02/2020, à 17:43
- LukePerp
Re : anacron
Attention : anacron ne fonctionne que si la machine est branché au secteur, c'est à dire qu'il ne fonctionne pas si la machine est sur batterie.
Gamer inside - Ubuntu Mate dernière LTS - Intel i5, 16 Go - Dual boot Windows - Utilisateur de Dapps sur Ethereum
Hors ligne
#11 Le 13/02/2020, à 18:19
- MicP
Re : anacron
Bonjour
@bruno
Petite faute de frappe : Il manque la racine (/) du chemin de l'interpréteur bash dans le shebang de ton script,
ça devrait être :
#!/bin/bash
/bin/date >> /home/fred/logtest.txt
Dernière modification par MicP (Le 13/02/2020, à 18:21)
Hors ligne
#12 Le 13/02/2020, à 18:39
- bruno
Re : anacron
@MicP : j'ai corrigé merci
@LukePerp : très juste
#13 Le 13/02/2020, à 20:41
- tojac
Re : anacron
Merci de vous intéresser à mon cas. C'est incroyable, mais ça ne fonctionne toujours pas avec anacron alors qu'avec cron oui !
J'ai corrigé mon fichier, root est bien propriétaire, la machine est un PC fixe donc branché.
vous pouvez comparer les horaires du journal et du fichier logtest, seul le lancement par cron écrit dedans.
logtest.txt
samedi 8 février 2020, 18:15:14 (UTC+0100)
samedi 8 février 2020, 18:15:58 (UTC+0100)
samedi 8 février 2020, 18:22:20 (UTC+0100)
mercredi 12 février 2020, 22:19:38 (UTC+0100)
jeudi 13 février 2020, 06:21:01 (UTC+0100)
jeudi 13 février 2020, 06:47:01 (UTC+0100)
jeudi 13 février 2020, 20:26:01 (UTC+0100)
journal :
fred@fred-System-Product-Name:~$ journalctl -xb | grep -i cron
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Trigger anacron every hour.
-- Subject: L'unité (unit) anacron.timer a terminé son démarrage
-- L'unité (unit) anacron.timer a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Anacron 2.3 started on 2020-02-13
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.daily' in 5 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.weekly' in 10 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.monthly' in 15 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Jobs will be executed sequentially
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (pidfile fd = 3)
-- Subject: L'unité (unit) cron.service a terminé son démarrage
-- L'unité (unit) cron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (Running @reboot jobs)
févr. 13 06:33:01 fred-System-Product-Name anacron[959]: Job `cron.daily' started
févr. 13 06:33:01 fred-System-Product-Name anacron[3028]: Updated timestamp for job `cron.daily' to 2020-02-13
févr. 13 06:33:29 fred-System-Product-Name anacron[959]: Job `cron.daily' terminated
fred@fred-System-Product-Name:~$ sudo anacron -f -n
[sudo] Mot de passe de fred :
fred@fred-System-Product-Name:~$ journalctl -xb | grep -i cron
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Trigger anacron every hour.
-- Subject: L'unité (unit) anacron.timer a terminé son démarrage
-- L'unité (unit) anacron.timer a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Anacron 2.3 started on 2020-02-13
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.daily' in 5 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.weekly' in 10 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.monthly' in 15 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Jobs will be executed sequentially
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (pidfile fd = 3)
-- Subject: L'unité (unit) cron.service a terminé son démarrage
-- L'unité (unit) cron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (Running @reboot jobs)
févr. 13 06:33:01 fred-System-Product-Name anacron[959]: Job `cron.daily' started
févr. 13 06:33:01 fred-System-Product-Name anacron[3028]: Updated timestamp for job `cron.daily' to 2020-02-13
févr. 13 06:33:29 fred-System-Product-Name anacron[959]: Job `cron.daily' terminated
févr. 13 06:38:01 fred-System-Product-Name anacron[959]: Job `cron.weekly' started
févr. 13 06:38:01 fred-System-Product-Name anacron[3302]: Updated timestamp for job `cron.weekly' to 2020-02-13
févr. 13 06:38:01 fred-System-Product-Name anacron[959]: Job `cron.weekly' terminated
févr. 13 06:43:01 fred-System-Product-Name anacron[959]: Job `cron.monthly' started
févr. 13 06:43:01 fred-System-Product-Name anacron[959]: Job `cron.monthly' terminated
févr. 13 06:43:01 fred-System-Product-Name anacron[959]: Normal exit (3 jobs run)
févr. 13 06:43:01 fred-System-Product-Name anacron[3384]: Updated timestamp for job `cron.monthly' to 2020-02-13
févr. 13 06:43:01 fred-System-Product-Name systemd[1]: anacron.service: Killing process 3384 (anacron) with signal SIGKILL.
févr. 13 06:43:01 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 06:45:20 fred-System-Product-Name crontab[3435]: (fred) BEGIN EDIT (fred)
févr. 13 06:46:13 fred-System-Product-Name crontab[3435]: (fred) REPLACE (fred)
févr. 13 06:46:13 fred-System-Product-Name crontab[3435]: (fred) END EDIT (fred)
févr. 13 06:47:01 fred-System-Product-Name cron[1691]: (fred) RELOAD (crontabs/fred)
févr. 13 06:47:01 fred-System-Product-Name CRON[3459]: pam_unix(cron:session): session opened for user fred by (uid=0)
févr. 13 06:47:01 fred-System-Product-Name CRON[3466]: (fred) CMD (/etc/cron.daily/test.sh)
févr. 13 06:47:01 fred-System-Product-Name CRON[3459]: pam_unix(cron:session): session closed for user fred
févr. 13 06:51:43 fred-System-Product-Name crontab[3563]: (fred) BEGIN EDIT (fred)
févr. 13 07:17:01 fred-System-Product-Name CRON[5710]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 07:17:01 fred-System-Product-Name CRON[5711]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 07:17:01 fred-System-Product-Name CRON[5710]: pam_unix(cron:session): session closed for user root
févr. 13 07:26:18 fred-System-Product-Name crontab[3563]: (fred) END EDIT (fred)
févr. 13 07:30:01 fred-System-Product-Name CRON[6073]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 07:30:02 fred-System-Product-Name CRON[6074]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 07:30:02 fred-System-Product-Name CRON[6073]: pam_unix(cron:session): session closed for user root
févr. 13 07:32:21 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 07:32:21 fred-System-Product-Name anacron[6115]: Anacron 2.3 started on 2020-02-13
févr. 13 07:32:21 fred-System-Product-Name anacron[6115]: Normal exit (0 jobs run)
févr. 13 07:32:21 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 08:17:01 fred-System-Product-Name CRON[6986]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 08:17:01 fred-System-Product-Name CRON[6987]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 08:17:01 fred-System-Product-Name CRON[6986]: pam_unix(cron:session): session closed for user root
févr. 13 08:30:01 fred-System-Product-Name CRON[7239]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 08:30:01 fred-System-Product-Name CRON[7240]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 08:30:01 fred-System-Product-Name CRON[7239]: pam_unix(cron:session): session closed for user root
févr. 13 08:35:00 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 08:35:00 fred-System-Product-Name anacron[7320]: Anacron 2.3 started on 2020-02-13
févr. 13 08:35:00 fred-System-Product-Name anacron[7320]: Normal exit (0 jobs run)
févr. 13 08:35:00 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 10:36:03 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 10:36:03 fred-System-Product-Name anacron[7789]: Anacron 2.3 started on 2020-02-13
févr. 13 10:36:03 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 10:36:03 fred-System-Product-Name anacron[7789]: Normal exit (0 jobs run)
févr. 13 10:36:39 fred-System-Product-Name CRON[8196]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 10:36:39 fred-System-Product-Name CRON[8197]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 10:36:39 fred-System-Product-Name CRON[8196]: pam_unix(cron:session): session closed for user root
févr. 13 10:36:39 fred-System-Product-Name CRON[8198]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 10:36:39 fred-System-Product-Name CRON[8199]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 10:36:39 fred-System-Product-Name CRON[8198]: pam_unix(cron:session): session closed for user root
févr. 13 14:01:34 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 14:01:34 fred-System-Product-Name anacron[9340]: Anacron 2.3 started on 2020-02-13
févr. 13 14:01:34 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 14:01:34 fred-System-Product-Name anacron[9340]: Normal exit (0 jobs run)
févr. 13 14:01:40 fred-System-Product-Name CRON[9369]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:01:40 fred-System-Product-Name CRON[9370]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 14:01:40 fred-System-Product-Name CRON[9369]: pam_unix(cron:session): session closed for user root
févr. 13 14:01:40 fred-System-Product-Name CRON[9371]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:01:40 fred-System-Product-Name CRON[9372]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 14:01:40 fred-System-Product-Name CRON[9371]: pam_unix(cron:session): session closed for user root
févr. 13 14:01:40 fred-System-Product-Name CRON[9373]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:01:40 fred-System-Product-Name CRON[9374]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 14:01:40 fred-System-Product-Name CRON[9373]: pam_unix(cron:session): session closed for user root
févr. 13 14:17:01 fred-System-Product-Name CRON[10085]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:17:01 fred-System-Product-Name CRON[10086]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 14:17:01 fred-System-Product-Name CRON[10085]: pam_unix(cron:session): session closed for user root
févr. 13 15:25:51 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 15:25:51 fred-System-Product-Name anacron[10233]: Anacron 2.3 started on 2020-02-13
févr. 13 15:25:51 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 15:25:51 fred-System-Product-Name anacron[10233]: Normal exit (0 jobs run)
févr. 13 15:26:34 fred-System-Product-Name CRON[10631]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 15:26:34 fred-System-Product-Name CRON[10634]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 15:26:34 fred-System-Product-Name CRON[10631]: pam_unix(cron:session): session closed for user root
févr. 13 15:30:01 fred-System-Product-Name CRON[11040]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 15:30:01 fred-System-Product-Name CRON[11041]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 15:30:01 fred-System-Product-Name CRON[11040]: pam_unix(cron:session): session closed for user root
févr. 13 15:34:58 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 15:34:58 fred-System-Product-Name anacron[11323]: Anacron 2.3 started on 2020-02-13
févr. 13 15:34:58 fred-System-Product-Name anacron[11323]: Normal exit (0 jobs run)
févr. 13 15:34:58 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 16:17:01 fred-System-Product-Name CRON[12338]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 16:17:01 fred-System-Product-Name CRON[12339]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 16:17:01 fred-System-Product-Name CRON[12338]: pam_unix(cron:session): session closed for user root
févr. 13 16:30:01 fred-System-Product-Name CRON[12822]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 16:30:01 fred-System-Product-Name CRON[12823]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 16:30:01 fred-System-Product-Name CRON[12822]: pam_unix(cron:session): session closed for user root
févr. 13 16:31:48 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 16:31:48 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 16:31:48 fred-System-Product-Name anacron[12866]: Anacron 2.3 started on 2020-02-13
févr. 13 16:31:48 fred-System-Product-Name anacron[12866]: Normal exit (0 jobs run)
févr. 13 17:17:01 fred-System-Product-Name CRON[13725]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 17:17:01 fred-System-Product-Name CRON[13726]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 17:17:01 fred-System-Product-Name CRON[13725]: pam_unix(cron:session): session closed for user root
févr. 13 17:30:01 fred-System-Product-Name CRON[13885]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 17:30:01 fred-System-Product-Name CRON[13886]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 17:30:01 fred-System-Product-Name CRON[13885]: pam_unix(cron:session): session closed for user root
févr. 13 17:30:38 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 17:30:38 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 17:30:38 fred-System-Product-Name anacron[13893]: Anacron 2.3 started on 2020-02-13
févr. 13 17:30:38 fred-System-Product-Name anacron[13893]: Normal exit (0 jobs run)
févr. 13 18:17:01 fred-System-Product-Name CRON[14476]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 18:17:01 fred-System-Product-Name CRON[14477]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 18:17:01 fred-System-Product-Name CRON[14476]: pam_unix(cron:session): session closed for user root
févr. 13 18:30:01 fred-System-Product-Name CRON[14637]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 18:30:01 fred-System-Product-Name CRON[14638]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 18:30:01 fred-System-Product-Name CRON[14637]: pam_unix(cron:session): session closed for user root
févr. 13 18:31:38 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 18:31:38 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 18:31:38 fred-System-Product-Name anacron[14650]: Anacron 2.3 started on 2020-02-13
févr. 13 18:31:38 fred-System-Product-Name anacron[14650]: Normal exit (0 jobs run)
févr. 13 19:17:01 fred-System-Product-Name CRON[15247]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 19:17:01 fred-System-Product-Name CRON[15248]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 19:17:01 fred-System-Product-Name CRON[15247]: pam_unix(cron:session): session closed for user root
févr. 13 19:30:01 fred-System-Product-Name CRON[15450]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 19:30:01 fred-System-Product-Name CRON[15451]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 19:30:01 fred-System-Product-Name CRON[15450]: pam_unix(cron:session): session closed for user root
févr. 13 19:35:00 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 19:35:00 fred-System-Product-Name anacron[15521]: Anacron 2.3 started on 2020-02-13
févr. 13 19:35:00 fred-System-Product-Name anacron[15521]: Normal exit (0 jobs run)
févr. 13 19:35:00 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 20:03:20 fred-System-Product-Name sudo[16061]: fred : TTY=pts/0 ; PWD=/etc/cron.daily ; USER=root ; COMMAND=/usr/bin/mousepad test.sh
févr. 13 20:05:40 fred-System-Product-Name sudo[16120]: fred : TTY=pts/1 ; PWD=/home/fred ; USER=root ; COMMAND=/usr/sbin/anacron -f -n
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Anacron 2.3 started on 2020-02-13
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Will run job `cron.daily'
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Will run job `cron.weekly'
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Will run job `cron.monthly'
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Jobs will be executed sequentially
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Job `cron.daily' started
févr. 13 20:05:40 fred-System-Product-Name anacron[16129]: Updated timestamp for job `cron.daily' to 2020-02-13
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.daily' terminated
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.weekly' started
févr. 13 20:05:49 fred-System-Product-Name anacron[16259]: Updated timestamp for job `cron.weekly' to 2020-02-13
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.weekly' terminated
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.monthly' started
févr. 13 20:05:49 fred-System-Product-Name anacron[16270]: Updated timestamp for job `cron.monthly' to 2020-02-13
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.monthly' terminated
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Normal exit (3 jobs run)
fred@fred-System-Product-Name:~$ journalctl -xb | grep -i cron
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Trigger anacron every hour.
-- Subject: L'unité (unit) anacron.timer a terminé son démarrage
-- L'unité (unit) anacron.timer a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Anacron 2.3 started on 2020-02-13
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.daily' in 5 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.weekly' in 10 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Will run job `cron.monthly' in 15 min.
févr. 13 06:28:01 fred-System-Product-Name anacron[959]: Jobs will be executed sequentially
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (pidfile fd = 3)
-- Subject: L'unité (unit) cron.service a terminé son démarrage
-- L'unité (unit) cron.service a terminé son démarrage, avec le résultat done.
févr. 13 06:28:11 fred-System-Product-Name cron[1691]: (CRON) INFO (Running @reboot jobs)
févr. 13 06:33:01 fred-System-Product-Name anacron[959]: Job `cron.daily' started
févr. 13 06:33:01 fred-System-Product-Name anacron[3028]: Updated timestamp for job `cron.daily' to 2020-02-13
févr. 13 06:33:29 fred-System-Product-Name anacron[959]: Job `cron.daily' terminated
févr. 13 06:38:01 fred-System-Product-Name anacron[959]: Job `cron.weekly' started
févr. 13 06:38:01 fred-System-Product-Name anacron[3302]: Updated timestamp for job `cron.weekly' to 2020-02-13
févr. 13 06:38:01 fred-System-Product-Name anacron[959]: Job `cron.weekly' terminated
févr. 13 06:43:01 fred-System-Product-Name anacron[959]: Job `cron.monthly' started
févr. 13 06:43:01 fred-System-Product-Name anacron[959]: Job `cron.monthly' terminated
févr. 13 06:43:01 fred-System-Product-Name anacron[959]: Normal exit (3 jobs run)
févr. 13 06:43:01 fred-System-Product-Name anacron[3384]: Updated timestamp for job `cron.monthly' to 2020-02-13
févr. 13 06:43:01 fred-System-Product-Name systemd[1]: anacron.service: Killing process 3384 (anacron) with signal SIGKILL.
févr. 13 06:43:01 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 06:45:20 fred-System-Product-Name crontab[3435]: (fred) BEGIN EDIT (fred)
févr. 13 06:46:13 fred-System-Product-Name crontab[3435]: (fred) REPLACE (fred)
févr. 13 06:46:13 fred-System-Product-Name crontab[3435]: (fred) END EDIT (fred)
févr. 13 06:47:01 fred-System-Product-Name cron[1691]: (fred) RELOAD (crontabs/fred)
févr. 13 06:47:01 fred-System-Product-Name CRON[3459]: pam_unix(cron:session): session opened for user fred by (uid=0)
févr. 13 06:47:01 fred-System-Product-Name CRON[3466]: (fred) CMD (/etc/cron.daily/test.sh)
févr. 13 06:47:01 fred-System-Product-Name CRON[3459]: pam_unix(cron:session): session closed for user fred
févr. 13 06:51:43 fred-System-Product-Name crontab[3563]: (fred) BEGIN EDIT (fred)
févr. 13 07:17:01 fred-System-Product-Name CRON[5710]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 07:17:01 fred-System-Product-Name CRON[5711]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 07:17:01 fred-System-Product-Name CRON[5710]: pam_unix(cron:session): session closed for user root
févr. 13 07:26:18 fred-System-Product-Name crontab[3563]: (fred) END EDIT (fred)
févr. 13 07:30:01 fred-System-Product-Name CRON[6073]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 07:30:02 fred-System-Product-Name CRON[6074]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 07:30:02 fred-System-Product-Name CRON[6073]: pam_unix(cron:session): session closed for user root
févr. 13 07:32:21 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 07:32:21 fred-System-Product-Name anacron[6115]: Anacron 2.3 started on 2020-02-13
févr. 13 07:32:21 fred-System-Product-Name anacron[6115]: Normal exit (0 jobs run)
févr. 13 07:32:21 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 08:17:01 fred-System-Product-Name CRON[6986]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 08:17:01 fred-System-Product-Name CRON[6987]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 08:17:01 fred-System-Product-Name CRON[6986]: pam_unix(cron:session): session closed for user root
févr. 13 08:30:01 fred-System-Product-Name CRON[7239]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 08:30:01 fred-System-Product-Name CRON[7240]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 08:30:01 fred-System-Product-Name CRON[7239]: pam_unix(cron:session): session closed for user root
févr. 13 08:35:00 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 08:35:00 fred-System-Product-Name anacron[7320]: Anacron 2.3 started on 2020-02-13
févr. 13 08:35:00 fred-System-Product-Name anacron[7320]: Normal exit (0 jobs run)
févr. 13 08:35:00 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 10:36:03 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 10:36:03 fred-System-Product-Name anacron[7789]: Anacron 2.3 started on 2020-02-13
févr. 13 10:36:03 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 10:36:03 fred-System-Product-Name anacron[7789]: Normal exit (0 jobs run)
févr. 13 10:36:39 fred-System-Product-Name CRON[8196]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 10:36:39 fred-System-Product-Name CRON[8197]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 10:36:39 fred-System-Product-Name CRON[8196]: pam_unix(cron:session): session closed for user root
févr. 13 10:36:39 fred-System-Product-Name CRON[8198]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 10:36:39 fred-System-Product-Name CRON[8199]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 10:36:39 fred-System-Product-Name CRON[8198]: pam_unix(cron:session): session closed for user root
févr. 13 14:01:34 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 14:01:34 fred-System-Product-Name anacron[9340]: Anacron 2.3 started on 2020-02-13
févr. 13 14:01:34 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 14:01:34 fred-System-Product-Name anacron[9340]: Normal exit (0 jobs run)
févr. 13 14:01:40 fred-System-Product-Name CRON[9369]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:01:40 fred-System-Product-Name CRON[9370]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 14:01:40 fred-System-Product-Name CRON[9369]: pam_unix(cron:session): session closed for user root
févr. 13 14:01:40 fred-System-Product-Name CRON[9371]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:01:40 fred-System-Product-Name CRON[9372]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 14:01:40 fred-System-Product-Name CRON[9371]: pam_unix(cron:session): session closed for user root
févr. 13 14:01:40 fred-System-Product-Name CRON[9373]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:01:40 fred-System-Product-Name CRON[9374]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 14:01:40 fred-System-Product-Name CRON[9373]: pam_unix(cron:session): session closed for user root
févr. 13 14:17:01 fred-System-Product-Name CRON[10085]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 14:17:01 fred-System-Product-Name CRON[10086]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 14:17:01 fred-System-Product-Name CRON[10085]: pam_unix(cron:session): session closed for user root
févr. 13 15:25:51 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 15:25:51 fred-System-Product-Name anacron[10233]: Anacron 2.3 started on 2020-02-13
févr. 13 15:25:51 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 15:25:51 fred-System-Product-Name anacron[10233]: Normal exit (0 jobs run)
févr. 13 15:26:34 fred-System-Product-Name CRON[10631]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 15:26:34 fred-System-Product-Name CRON[10634]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 15:26:34 fred-System-Product-Name CRON[10631]: pam_unix(cron:session): session closed for user root
févr. 13 15:30:01 fred-System-Product-Name CRON[11040]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 15:30:01 fred-System-Product-Name CRON[11041]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 15:30:01 fred-System-Product-Name CRON[11040]: pam_unix(cron:session): session closed for user root
févr. 13 15:34:58 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 15:34:58 fred-System-Product-Name anacron[11323]: Anacron 2.3 started on 2020-02-13
févr. 13 15:34:58 fred-System-Product-Name anacron[11323]: Normal exit (0 jobs run)
févr. 13 15:34:58 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 16:17:01 fred-System-Product-Name CRON[12338]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 16:17:01 fred-System-Product-Name CRON[12339]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 16:17:01 fred-System-Product-Name CRON[12338]: pam_unix(cron:session): session closed for user root
févr. 13 16:30:01 fred-System-Product-Name CRON[12822]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 16:30:01 fred-System-Product-Name CRON[12823]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 16:30:01 fred-System-Product-Name CRON[12822]: pam_unix(cron:session): session closed for user root
févr. 13 16:31:48 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 16:31:48 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 16:31:48 fred-System-Product-Name anacron[12866]: Anacron 2.3 started on 2020-02-13
févr. 13 16:31:48 fred-System-Product-Name anacron[12866]: Normal exit (0 jobs run)
févr. 13 17:17:01 fred-System-Product-Name CRON[13725]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 17:17:01 fred-System-Product-Name CRON[13726]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 17:17:01 fred-System-Product-Name CRON[13725]: pam_unix(cron:session): session closed for user root
févr. 13 17:30:01 fred-System-Product-Name CRON[13885]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 17:30:01 fred-System-Product-Name CRON[13886]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 17:30:01 fred-System-Product-Name CRON[13885]: pam_unix(cron:session): session closed for user root
févr. 13 17:30:38 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 17:30:38 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 17:30:38 fred-System-Product-Name anacron[13893]: Anacron 2.3 started on 2020-02-13
févr. 13 17:30:38 fred-System-Product-Name anacron[13893]: Normal exit (0 jobs run)
févr. 13 18:17:01 fred-System-Product-Name CRON[14476]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 18:17:01 fred-System-Product-Name CRON[14477]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 18:17:01 fred-System-Product-Name CRON[14476]: pam_unix(cron:session): session closed for user root
févr. 13 18:30:01 fred-System-Product-Name CRON[14637]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 18:30:01 fred-System-Product-Name CRON[14638]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 18:30:01 fred-System-Product-Name CRON[14637]: pam_unix(cron:session): session closed for user root
févr. 13 18:31:38 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 18:31:38 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 18:31:38 fred-System-Product-Name anacron[14650]: Anacron 2.3 started on 2020-02-13
févr. 13 18:31:38 fred-System-Product-Name anacron[14650]: Normal exit (0 jobs run)
févr. 13 19:17:01 fred-System-Product-Name CRON[15247]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 19:17:01 fred-System-Product-Name CRON[15248]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 19:17:01 fred-System-Product-Name CRON[15247]: pam_unix(cron:session): session closed for user root
févr. 13 19:30:01 fred-System-Product-Name CRON[15450]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 19:30:01 fred-System-Product-Name CRON[15451]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
févr. 13 19:30:01 fred-System-Product-Name CRON[15450]: pam_unix(cron:session): session closed for user root
févr. 13 19:35:00 fred-System-Product-Name systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat done.
févr. 13 19:35:00 fred-System-Product-Name anacron[15521]: Anacron 2.3 started on 2020-02-13
févr. 13 19:35:00 fred-System-Product-Name anacron[15521]: Normal exit (0 jobs run)
févr. 13 19:35:00 fred-System-Product-Name systemd[1]: anacron.service: Succeeded.
-- The unit anacron.service has successfully entered the 'dead' state.
févr. 13 20:03:20 fred-System-Product-Name sudo[16061]: fred : TTY=pts/0 ; PWD=/etc/cron.daily ; USER=root ; COMMAND=/usr/bin/mousepad test.sh
févr. 13 20:05:40 fred-System-Product-Name sudo[16120]: fred : TTY=pts/1 ; PWD=/home/fred ; USER=root ; COMMAND=/usr/sbin/anacron -f -n
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Anacron 2.3 started on 2020-02-13
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Will run job `cron.daily'
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Will run job `cron.weekly'
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Will run job `cron.monthly'
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Jobs will be executed sequentially
févr. 13 20:05:40 fred-System-Product-Name anacron[16124]: Job `cron.daily' started
févr. 13 20:05:40 fred-System-Product-Name anacron[16129]: Updated timestamp for job `cron.daily' to 2020-02-13
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.daily' terminated
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.weekly' started
févr. 13 20:05:49 fred-System-Product-Name anacron[16259]: Updated timestamp for job `cron.weekly' to 2020-02-13
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.weekly' terminated
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.monthly' started
févr. 13 20:05:49 fred-System-Product-Name anacron[16270]: Updated timestamp for job `cron.monthly' to 2020-02-13
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Job `cron.monthly' terminated
févr. 13 20:05:49 fred-System-Product-Name anacron[16124]: Normal exit (3 jobs run)
févr. 13 20:17:01 fred-System-Product-Name CRON[16462]: pam_unix(cron:session): session opened for user root by (uid=0)
févr. 13 20:17:01 fred-System-Product-Name CRON[16463]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
févr. 13 20:17:02 fred-System-Product-Name CRON[16462]: pam_unix(cron:session): session closed for user root
févr. 13 20:23:54 fred-System-Product-Name crontab[16572]: (fred) BEGIN EDIT (fred)
févr. 13 20:25:17 fred-System-Product-Name crontab[16572]: (fred) END EDIT (fred)
févr. 13 20:25:19 fred-System-Product-Name crontab[16610]: (fred) BEGIN EDIT (fred)
févr. 13 20:25:52 fred-System-Product-Name crontab[16610]: (fred) REPLACE (fred)
févr. 13 20:25:52 fred-System-Product-Name crontab[16610]: (fred) END EDIT (fred)
févr. 13 20:26:01 fred-System-Product-Name cron[1691]: (fred) RELOAD (crontabs/fred)
févr. 13 20:26:01 fred-System-Product-Name CRON[16629]: pam_unix(cron:session): session opened for user fred by (uid=0)
févr. 13 20:26:01 fred-System-Product-Name CRON[16630]: (fred) CMD (/etc/cron.daily/test.sh)
févr. 13 20:26:01 fred-System-Product-Name CRON[16629]: pam_unix(cron:session): session closed for user fred
Hors ligne
Pages : 1