diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | etc/cron.d/itzks-systems-common | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 0d02d66..677e9b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +itzks-systems (2016.09.07.2) UNRELEASED; urgency=medium + + * CRON: Run apt-get clean every morning, so the /var partition does not + get filled with unneeded packages. + + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 08 Sep 2016 10:53:02 +0200 + itzks-systems (2016.09.07.1) unstable; urgency=medium * debian/control: diff --git a/etc/cron.d/itzks-systems-common b/etc/cron.d/itzks-systems-common index f229c84..5fc02cf 100644 --- a/etc/cron.d/itzks-systems-common +++ b/etc/cron.d/itzks-systems-common @@ -5,3 +5,4 @@ PATH=/usr/bin:/bin:/usr/sbin:/sbin # make latest package lists available to the user and Icinga 0 7,15 * * * root if [ ! -e /etc/lts.conf ]; then apt-get update 1>/dev/null 2>/dev/null; fi +15 8 * * * root if [ ! -e /etc/lts.conf ]; then apt-get clean 1>/dev/null 2>/dev/null; fi
\ No newline at end of file |