From 18d38975fb8ff17340ddf0457d74f02a596248fb Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sun, 16 Dec 2007 18:46:43 -0200 Subject: * Fix cron.daily job to not call fail if apt isn't installed, closes: #443286. --- debian/apt.cron.daily | 3 +++ 1 file changed, 3 insertions(+) (limited to 'debian/apt.cron.daily') diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 1d4df56b6..7af689e1f 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -147,6 +147,9 @@ check_size_constraints() fi } +if ! which apt-config >/dev/null; then + exit 0 +fi UpdateInterval=0 DownloadUpgradeableInterval=0 -- cgit v1.2.3