diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-07-19 18:27:14 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-07-19 18:27:14 +0200 |
commit | 0f80e23fb61ea6023ddfb66a925e0e9b9791ed81 (patch) | |
tree | d8bbfed175c7336cef7626949a1c8fea67e47039 | |
parent | 58f6bcf0e61dc6c49382f24d41214acb93756a7c (diff) | |
download | itzks-systems-0f80e23fb61ea6023ddfb66a925e0e9b9791ed81.tar.gz itzks-systems-0f80e23fb61ea6023ddfb66a925e0e9b9791ed81.tar.bz2 itzks-systems-0f80e23fb61ea6023ddfb66a925e0e9b9791ed81.zip |
CRON: Silence calls to apt-get autoclean on system reboot. Such messages are "flooding" root mails on TJENER.
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | etc/cron.d/itzks-systems-common | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 9efc926..a66f9cf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +itzks-systems (2016.07.19.1) UNRELEASED; urgency=medium + + * CRON: Silence calls to apt-get autoclean on system reboot. Such messages + are "flooding" root mails on TJENER. + + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Tue, 19 Jul 2016 18:26:19 +0200 + itzks-systems (2016.07.15.7) unstable; urgency=medium * usr-lib-nagios-plugins: diff --git a/etc/cron.d/itzks-systems-common b/etc/cron.d/itzks-systems-common index 8c5ba13..e85bb4c 100644 --- a/etc/cron.d/itzks-systems-common +++ b/etc/cron.d/itzks-systems-common @@ -1,4 +1,4 @@ MAILTO=root PATH=/usr/bin:/bin:/usr/sbin:/sbin -@reboot root apt-get autoclean +@reboot root apt-get autoclean 1>/dev/null |