]> git.saurik.com Git - apt.git/blobdiff - debian/apt.cron.daily
methods/makefile: remove duplicated entry for https
[apt.git] / debian / apt.cron.daily
index 48714ec15d50780b6d330c239e1e4c1811b7af1d..d1016dfc5d5cbde8853871891504874f92b8e8b0 100644 (file)
@@ -147,6 +147,9 @@ check_size_constraints()
     fi
 }
 
+if ! which apt-config >/dev/null; then
+       exit 0
+fi
 
 UpdateInterval=0
 DownloadUpgradeableInterval=0
@@ -170,6 +173,13 @@ if which on_ac_power >/dev/null; then
     fi
 fi
 
+# check if we can lock the cache and if the cache is clean
+if ! apt-get check -q -q 2>/dev/null; then
+    echo "$0: could not lock the APT cache"
+    exit 1
+fi
+
+
 UPDATE_STAMP=/var/lib/apt/periodic/update-stamp
 if check_stamp $UPDATE_STAMP $UpdateInterval; then
     if apt-get -qq update 2>/dev/null; then