diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-11 21:46:51 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-11 21:46:51 +0200 |
commit | de15fbae15a0d44457dd998a5804c62bf0cc3d7d (patch) | |
tree | 5ddede79d0fa7251a98ec790120e274b4aabc8da /debian/apt.cron.daily | |
parent | faebb6992f9a4b8cfe95083c2ad63ff49b608ed0 (diff) |
* debian/apt.cron.daily:
- move unattended-upgrade before apt-get autoclean
Diffstat (limited to 'debian/apt.cron.daily')
-rw-r--r-- | debian/apt.cron.daily | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 778e3cefe..34d6b164f 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -186,17 +186,17 @@ if check_stamp $DOWNLOAD_UPGRADEABLE_STAMP $DownloadUpgradeableInterval; then update_stamp $DOWNLOAD_UPGRADEABLE_STAMP fi -AUTOCLEAN_STAMP=/var/lib/apt/periodic/autoclean-stamp -if check_stamp $AUTOCLEAN_STAMP $AutocleanInterval; then - apt-get -qq autoclean - update_stamp $AUTOCLEAN_STAMP -fi - UPGRADE_STAMP=/var/lib/apt/periodic/upgrade-stamp if check_stamp $UPGRADE_STAMP $UnattendedUpgradeInterval; then unattended-upgrade update_stamp $UPGRADE_STAMP fi +AUTOCLEAN_STAMP=/var/lib/apt/periodic/autoclean-stamp +if check_stamp $AUTOCLEAN_STAMP $AutocleanInterval; then + apt-get -qq autoclean + update_stamp $AUTOCLEAN_STAMP +fi + # check cache size check_size_constraints |