diff options
author | Julian Andres Klode <jak@debian.org> | 2009-08-06 12:54:27 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2009-08-06 12:54:27 +0200 |
commit | 9a64707c285290c4e191e04d92c0fab9f6f118f5 (patch) | |
tree | fabd3d18955ad2a8c4ff3fc47f83b0a2517521ae /debian/apt.cron.daily | |
parent | 6b519e4227f41980b6de18a882808df92f1e36f1 (diff) |
debian/apt.cron.daily: Fix issue related to APT::Periodic::Enable.
Diffstat (limited to 'debian/apt.cron.daily')
-rw-r--r-- | debian/apt.cron.daily | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index a09eeaca8..b6099ee75 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -329,7 +329,7 @@ fi AutoAptEnable=1 # default is yes eval $(apt-config shell AutoAptEnable APT::Periodic::Enable) -if [ AutoAptEnable -eq 0 ]; then +if [ $AutoAptEnable -eq 0 ]; then exit 0 fi |