Also in der syslog steht die Meldung auch drin. Mittlerweile noch häufiger. 12:44, 12:49, 13:04, 13:09
Die Meldung erscheint immer 30-31 sek bevor in der syslog die folgenden 3 Cronjobs geloggt werden.
Code: Alles auswählen
Oct 28 12:45:01 server /USR/SBIN/CRON[14822]: (root) CMD (nice -n 5^I/usr/bin/php5 -q /var/www/froxlor/scripts/froxlor_master_cronjob.php)
Oct 28 12:45:01 server /USR/SBIN/CRON[14823]: (root) CMD (if [ -x /etc/munin/plugins/apt_all ]; then /etc/munin/plugins/apt_all update 7200 12 >/dev/null; elif [ -x /etc/munin/plugins/apt ]; then /etc/munin/plugins/apt update 7200 12 >/dev/null; fi)
Oct 28 12:45:01 server /USR/SBIN/CRON[14824]: (munin) CMD (if [ -x /usr/bin/munin-cron ]; then /usr/bin/munin-cron; fi)
Hier mal die Inhalte der Cronjobs:
froxlor
Code: Alles auswählen
#
# Set PATH, otherwise restart-scripts won't find start-stop-daemon
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
#
# Regular cron jobs for the froxlor package
#
*/5 * * * * root nice -n 5 /usr/bin/php5 -q /var/www/froxlor/scripts/froxlor_master_cronjob.php
munin
Code: Alles auswählen
#
# cron-jobs for munin
#
MAILTO=root
*/5 * * * * munin if [ -x /usr/bin/munin-cron ]; then /usr/bin/munin-cron; fi
14 10 * * * munin if [ -x /usr/share/munin/munin-limits ]; then /usr/share/munin/munin-limits --force --contact nagios --contact old-nagios; fi
munin-node
Code: Alles auswählen
#
# cron-jobs for munin-node
#
MAILTO=root
# If the APT plugin is enabled, update packages databases approx. once
# an hour (12 invokations an hour, 1 in 12 chance that the update will
# happen), but ensure that there will never be more than two hour (7200
# seconds) interval between updates..
*/5 * * * * root if [ -x /etc/munin/plugins/apt_all ]; then /etc/munin/plugins/apt_all update 7200 12 >/dev/null; elif [ -x /etc/munin/plugins/apt ]; then /etc/munin/plugins/apt update 7200 12 >/dev/null; fi