diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-14 14:32:02 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-14 14:32:02 +0200 |
commit | 821c6533d7ead7ec2e4832e6b3a980cd83c76754 (patch) | |
tree | 49d3267affcb4221b6cb744a31f34ec93697bc20 /debian/apt.cron.daily | |
parent | 12121baed79ed5f47020b495519b68d1c37e0123 (diff) | |
parent | 9efa2e916d134e5960351cc3b67f4556ec4b2126 (diff) |
* debian/apt.cron.daily:
- move unattended-upgrade before apt-get autoclean
* fix "purge" commandline argument, closes LP: #125733
(thanks to Julien Danjou for the patch)
* fix missing SetExecClose() call when the status-fd is used
* debian/apt.cron.daily:
- move unattended-upgrade before apt-get autoclean
* fix "purge" commandline argument, closes: #133421
(thanks to Julien Danjou for the patch)
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 |