]> git.saurik.com Git - apt.git/blame - debian/apt.cron.daily
mention APT::AutoRemove::{Recommends,Suggests}Important option
[apt.git] / debian / apt.cron.daily
CommitLineData
0c132682 1#!/bin/sh
0c132682 2#set -e
8a139d4d
MV
3#
4# This file understands the following apt configuration variables:
ff7c76f8 5# Values here are the default.
f9be02d7 6# Create /etc/apt/apt.conf.d/10periodic file to set your preference.
8a139d4d 7#
ff7c76f8
OA
8# Dir "/";
9# - RootDir for all configuration files
8a139d4d 10#
0d0bdb60 11# Dir::Cache "var/cache/apt/";
ff7c76f8
OA
12# - Set apt package cache directory
13#
c1cde32e 14# Dir::Cache::Archives "archives/";
ff7c76f8
OA
15# - Set package archive directory
16#
17443d48
JAK
17# APT::Periodic::Enable "1";
18# - Enable the update/upgrade script (0=disable)
19#
ff7c76f8
OA
20# APT::Periodic::BackupArchiveInterval "0";
21# - Backup after n-days if archive contents changed.(0=disable)
22#
23# APT::Periodic::BackupLevel "3";
24# - Backup level.(0=disable), 1 is invalid.
25#
26# Dir::Cache::Backup "backup/";
27# - Set periodic package backup directory
28#
29# APT::Archives::MaxAge "0"; (old, deprecated)
30# APT::Periodic::MaxAge "0"; (new)
8a139d4d
MV
31# - Set maximum allowed age of a cache package file. If a cache
32# package file is older it is deleted (0=disable)
33#
ff7c76f8
OA
34# APT::Archives::MinAge "2"; (old, deprecated)
35# APT::Periodic::MinAge "2"; (new)
36# - Set minimum age of a package file. If a file is younger it
1e3f4083 37# will not be deleted (0=disable). Useful to prevent races
ff7c76f8
OA
38# and to keep backups of the packages for emergency.
39#
40# APT::Archives::MaxSize "0"; (old, deprecated)
41# APT::Periodic::MaxSize "0"; (new)
8a139d4d
MV
42# - Set maximum size of the cache in MB (0=disable). If the cache
43# is bigger, cached package files are deleted until the size
12c4e7c9 44# requirement is met (the oldest packages will be deleted
8a139d4d
MV
45# first).
46#
ff7c76f8
OA
47# APT::Periodic::Update-Package-Lists "0";
48# - Do "apt-get update" automatically every n-days (0=disable)
49#
50# APT::Periodic::Download-Upgradeable-Packages "0";
51# - Do "apt-get upgrade --download-only" every n-days (0=disable)
6b519e42
JAK
52#
53# APT::Periodic::Download-Upgradeable-Packages-Debdelta "1";
54# - Use debdelta-upgrade to download updates if available (0=disable)
55#
ff7c76f8
OA
56# APT::Periodic::Unattended-Upgrade "0";
57# - Run the "unattended-upgrade" security upgrade script
58# every n-days (0=disabled)
59# Requires the package "unattended-upgrades" and will write
60# a log in /var/log/unattended-upgrades
8a139d4d 61#
ff7c76f8
OA
62# APT::Periodic::AutocleanInterval "0";
63# - Do "apt-get autoclean" every n-days (0=disable)
64#
65# APT::Periodic::Verbose "0";
66# - Send report mail to root
67# 0: no report (or null string)
68# 1: progress report (actually any string)
69# 2: + command outputs (remove -qq, remove 2>/dev/null, add -d)
70# 3: + trace on
1d6afdd9
TP
71#
72# APT::Periodic::RandomSleep "1800";
73# - The apt cron job will delay its execution by a random
74# time span between zero and 'APT::Periodic::RandomSleep'
75# seconds.
76# This is done because otherwise everyone would access the
77# mirror servers at the same time and put them collectively
78# under very high strain.
79# You can set this to '0' if you are using a local mirror and
80# do not care about the load spikes.
81# Note that sleeping in the apt job will be delaying the
82# execution of all subsequent cron.daily jobs.
83#
0c132682 84
05f6a46a 85check_stamp()
0c132682 86{
05f6a46a
MZ
87 stamp="$1"
88 interval="$2"
89
10946ddc 90 if [ $interval -eq 0 ]; then
53391d0f 91 debug_echo "check_stamp: interval=0"
ff7c76f8 92 # treat as no time has passed
10946ddc
MZ
93 return 1
94 fi
95
05f6a46a 96 if [ ! -f $stamp ]; then
ff7c76f8
OA
97 debug_echo "check_stamp: missing time stamp file: $stamp."
98 # treat as enough time has passed
05f6a46a 99 return 0
0c132682 100 fi
05f6a46a
MZ
101
102 # compare midnight today to midnight the day the stamp was updated
a7c526b6
MV
103 stamp_file="$stamp"
104 stamp=$(date --date=$(date -r $stamp_file --iso-8601) +%s 2>/dev/null)
105 if [ "$?" != "0" ]; then
106 # Due to some timezones returning 'invalid date' for midnight on
e9db7e74 107 # certain dates (e.g. America/Sao_Paulo), if date returns with error
a7c526b6
MV
108 # remove the stamp file and return 0. See coreutils bug:
109 # http://lists.gnu.org/archive/html/bug-coreutils/2007-09/msg00176.html
110 rm -f "$stamp_file"
111 return 0
112 fi
113
114 now=$(date --date=$(date --iso-8601) +%s 2>/dev/null)
115 if [ "$?" != "0" ]; then
116 # As above, due to some timezones returning 'invalid date' for midnight
e9db7e74 117 # on certain dates (e.g. America/Sao_Paulo), if date returns with error
a7c526b6
MV
118 # return 0.
119 return 0
120 fi
121
05f6a46a 122 delta=$(($now-$stamp))
05f6a46a 123
e9db7e74 124 # interval is in days, convert to sec.
8a139d4d 125 interval=$(($interval*60*60*24))
ff7c76f8 126 debug_echo "check_stamp: interval=$interval, now=$now, stamp=$stamp, delta=$delta (sec)"
8a139d4d 127
6e7c6c3f
MV
128 # remove timestamps a day (or more) in the future and force re-check
129 if [ $stamp -gt $(($now+86400)) ]; then
130 echo "WARNING: file $stamp_file has a timestamp in the future: $stamp"
131 rm -f "$stamp_file"
132 return 0
133 fi
134
05f6a46a
MZ
135 if [ $delta -ge $interval ]; then
136 return 0
137 fi
138
139 return 1
140}
141
142update_stamp()
143{
144 stamp="$1"
05f6a46a 145 touch $stamp
0c132682
MZ
146}
147
6cce801a 148# we check here if autoclean was enough sizewise
2e8a92e5 149check_size_constraints()
6cce801a 150{
6cce801a 151 MaxAge=0
6cce801a 152 eval $(apt-config shell MaxAge APT::Archives::MaxAge)
c98870b0
MV
153 eval $(apt-config shell MaxAge APT::Periodic::MaxAge)
154
155 MinAge=2
8a139d4d 156 eval $(apt-config shell MinAge APT::Archives::MinAge)
c98870b0
MV
157 eval $(apt-config shell MinAge APT::Periodic::MinAge)
158
159 MaxSize=0
6cce801a 160 eval $(apt-config shell MaxSize APT::Archives::MaxSize)
c98870b0
MV
161 eval $(apt-config shell MaxSize APT::Periodic::MaxSize)
162
c1cde32e
DK
163 Cache="/var/cache/apt/archives/"
164 eval $(apt-config shell Cache Dir::Cache::archives/d)
6cce801a
MV
165
166 # sanity check
c1cde32e
DK
167 if [ -z "$Cache" ]; then
168 echo "empty Dir::Cache::archives, exiting"
6cce801a
MV
169 exit
170 fi
6cce801a
MV
171
172 # check age
8a139d4d 173 if [ ! $MaxAge -eq 0 ] && [ ! $MinAge -eq 0 ]; then
c98870b0 174 debug_echo "aged: ctime <$MaxAge and mtime <$MaxAge and ctime>$MinAge and mtime>$MinAge"
8e29e348 175 find $Cache -name "*.deb" \( -mtime +$MaxAge -and -ctime +$MaxAge \) -and -not \( -mtime -$MinAge -or -ctime -$MinAge \) -print0 | xargs -r -0 rm -f
8a139d4d 176 elif [ ! $MaxAge -eq 0 ]; then
c98870b0 177 debug_echo "aged: ctime <$MaxAge and mtime <$MaxAge only"
8e29e348 178 find $Cache -name "*.deb" -ctime +$MaxAge -and -mtime +$MaxAge -print0 | xargs -r -0 rm -f
c98870b0
MV
179 else
180 debug_echo "skip aging since MaxAge is 0"
6cce801a
MV
181 fi
182
183 # check size
184 if [ ! $MaxSize -eq 0 ]; then
8a139d4d
MV
185 # maxSize is in MB
186 MaxSize=$(($MaxSize*1024))
187
188 #get current time
189 now=$(date --date=$(date --iso-8601) +%s)
190 MinAge=$(($MinAge*24*60*60))
191
6cce801a 192 # reverse-sort by mtime
3408b58c 193 for file in $(ls -rt $Cache/*.deb 2>/dev/null); do
6cce801a
MV
194 du=$(du -s $Cache)
195 size=${du%%/*}
196 # check if the cache is small enough
197 if [ $size -lt $MaxSize ]; then
c98870b0 198 debug_echo "end remove by archive size: size=$size < $MaxSize"
6cce801a
MV
199 break
200 fi
8a139d4d
MV
201
202 # check for MinAge of the file
c98870b0 203 if [ $MinAge -ne 0 ]; then
8e29e348 204 # check both ctime and mtime
3971f8e8 205 mtime=$(stat -c %Y $file)
8e29e348
MV
206 ctime=$(stat -c %Z $file)
207 if [ $mtime -gt $ctime ]; then
208 delta=$(($now-$mtime))
209 else
210 delta=$(($now-$ctime))
211 fi
8a139d4d 212 if [ $delta -le $MinAge ]; then
e838ca08 213 debug_echo "skip remove by archive size: $file, delta=$delta < $MinAge"
3408b58c 214 break
c98870b0
MV
215 else
216 # delete oldest file
e838ca08 217 debug_echo "remove by archive size: $file, delta=$delta >= $MinAge (sec), size=$size >= $MaxSize"
c98870b0 218 rm -f $file
8a139d4d
MV
219 fi
220 fi
6cce801a
MV
221 done
222 fi
223}
224
c98870b0
MV
225# deal with the Apt::Periodic::BackupArchiveInterval
226do_cache_backup()
227{
228 BackupArchiveInterval="$1"
229 if [ $BackupArchiveInterval -eq 0 ]; then
230 return
231 fi
232
233 # Set default values and normalize
c1cde32e
DK
234 CacheDir="/var/cache/apt"
235 eval $(apt-config shell CacheDir Dir::Cache/d)
c98870b0
MV
236 CacheDir=${CacheDir%/}
237 if [ -z "$CacheDir" ]; then
238 debug_echo "practically empty Dir::Cache, exiting"
239 return 0
240 fi
241
c1cde32e
DK
242 Cache="${CacheDir}/archives/"
243 eval $(apt-config shell Cache Dir::Cache::Archives/d)
244 if [ -z "$Cache" ]; then
c98870b0
MV
245 debug_echo "practically empty Dir::Cache::archives, exiting"
246 return 0
247 fi
248
249 BackupLevel=3
250 eval $(apt-config shell BackupLevel APT::Periodic::BackupLevel)
251 if [ $BackupLevel -le 1 ]; then
252 BackupLevel=2 ;
253 fi
254
c1cde32e
DK
255 Back="${CacheDir}/backup/"
256 eval $(apt-config shell Back Dir::Cache::Backup/d)
257 if [ -z "$Back" ]; then
c98870b0
MV
258 echo "practically empty Dir::Cache::Backup, exiting" 1>&2
259 return
260 fi
261
c1cde32e
DK
262 CacheArchive="$(basename "${Cache}")"
263 test -n "${CacheArchive}" || CacheArchive="archives"
c98870b0
MV
264 BackX="${Back}${CacheArchive}/"
265 for x in $(seq 0 1 $((${BackupLevel}-1))); do
266 eval "Back${x}=${Back}${x}/"
267 done
268
269 # backup after n-days if archive contents changed.
270 # (This uses hardlink to save disk space)
271 BACKUP_ARCHIVE_STAMP=/var/lib/apt/periodic/backup-archive-stamp
272 if check_stamp $BACKUP_ARCHIVE_STAMP $BackupArchiveInterval; then
273 if [ $({(cd $Cache 2>/dev/null; find . -name "*.deb"); (cd $Back0 2>/dev/null;find . -name "*.deb") ;}| sort|uniq -u|wc -l) -ne 0 ]; then
274 mkdir -p $Back
275 rm -rf $Back$((${BackupLevel}-1))
276 for y in $(seq $((${BackupLevel}-1)) -1 1); do
277 eval BackY=${Back}$y
278 eval BackZ=${Back}$(($y-1))
279 if [ -e $BackZ ]; then
280 mv -f $BackZ $BackY ;
281 fi
282 done
283 cp -la $Cache $Back ; mv -f $BackX $Back0
284 update_stamp $BACKUP_ARCHIVE_STAMP
285 debug_echo "backup with hardlinks. (success)"
286 else
287 debug_echo "skip backup since same content."
288 fi
289 else
290 debug_echo "skip backup since too new."
291 fi
292}
293
d047c6da 294# sleep for a random interval of time (default 30min)
69c28efc
MV
295# (some code taken from cron-apt, thanks)
296random_sleep()
297{
298 RandomSleep=1800
299 eval $(apt-config shell RandomSleep APT::Periodic::RandomSleep)
300 if [ $RandomSleep -eq 0 ]; then
301 return
302 fi
303 if [ -z "$RANDOM" ] ; then
304 # A fix for shells that do not have this bash feature.
d925ac78 305 RANDOM=$(( $(dd if=/dev/urandom bs=2 count=1 2> /dev/null | cksum | cut -d' ' -f1) % 32767 ))
69c28efc
MV
306 fi
307 TIME=$(($RANDOM % $RandomSleep))
c98870b0 308 debug_echo "sleeping for $TIME seconds"
69c28efc
MV
309 sleep $TIME
310}
311
69c28efc 312
ff7c76f8 313debug_echo()
6cce801a 314{
ff7c76f8
OA
315 # Display message if $VERBOSE >= 1
316 if [ "$VERBOSE" -ge 1 ]; then
317 echo $1 1>&2
6cce801a 318 fi
ff7c76f8
OA
319}
320
e20d3bcf
JAK
321check_power(){
322 # laptop check, on_ac_power returns:
323 # 0 (true) System is on main power
324 # 1 (false) System is not on main power
325 # 255 (false) Power status could not be determined
326 # Desktop systems always return 255 it seems
e23ee4c2 327 if which on_ac_power >/dev/null; then
e20d3bcf
JAK
328 on_ac_power
329 POWER=$?
330 if [ $POWER -eq 1 ]; then
331 debug_echo "exit: system NOT on main power"
332 return 1
333 elif [ $POWER -ne 0 ]; then
334 debug_echo "power status ($POWER) undetermined, continuing"
335 fi
336 debug_echo "system is on main power."
337 fi
338 return 0
339}
340
c98870b0 341# ------------------------ main ----------------------------
69c28efc 342
a3b76cde
DK
343if test -r /var/lib/apt/extended_states; then
344 # Backup the 7 last versions of APT's extended_states file
345 # shameless copy from dpkg cron
346 if cd /var/backups ; then
347 if ! cmp -s apt.extended_states.0 /var/lib/apt/extended_states; then
348 cp -p /var/lib/apt/extended_states apt.extended_states
349 savelog -c 7 apt.extended_states >/dev/null
350 fi
a23a7811
DK
351 fi
352fi
353
e9db7e74 354# check apt-config existence
e23ee4c2 355if ! which apt-config >/dev/null ; then
18d38975
OS
356 exit 0
357fi
87ddfb96 358
17443d48
JAK
359# check if the user really wants to do something
360AutoAptEnable=1 # default is yes
361eval $(apt-config shell AutoAptEnable APT::Periodic::Enable)
362
9a64707c 363if [ $AutoAptEnable -eq 0 ]; then
17443d48
JAK
364 exit 0
365fi
366
ff7c76f8 367# Set VERBOSE mode from apt-config (or inherit from environment)
6985efb3 368VERBOSE=0
ff7c76f8 369eval $(apt-config shell VERBOSE APT::Periodic::Verbose)
c98870b0 370debug_echo "verbose level $VERBOSE"
ff7c76f8
OA
371if [ "$VERBOSE" -le 2 ]; then
372 # quiet for 0,1,2
373 XSTDOUT=">/dev/null"
374 XSTDERR="2>/dev/null"
375 XAPTOPT="-qq"
376 XUUPOPT=""
377else
378 XSTDOUT=""
379 XSTDERR=""
380 XAPTOPT=""
381 XUUPOPT="-d"
382fi
383if [ "$VERBOSE" -ge 3 ]; then
384 # trace output
385 set -x
386fi
8a139d4d 387
e20d3bcf 388check_power || exit 0
8a139d4d 389
ff7c76f8 390# check if we can lock the cache and if the cache is clean
e23ee4c2 391if which apt-get >/dev/null && ! eval apt-get check $XAPTOPT $XSTDERR ; then
ff7c76f8
OA
392 debug_echo "error encountered in cron job with \"apt-get check\"."
393 exit 0
394fi
8a139d4d 395
ff7c76f8
OA
396# Global current time in seconds since 1970-01-01 00:00:00 UTC
397now=$(date +%s)
6cce801a 398
ff7c76f8 399# Support old Archive for compatibility.
1e3f4083 400# Document only Periodic for all controlling parameters of this script.
ff7c76f8 401
0c132682 402UpdateInterval=0
ff7c76f8
OA
403eval $(apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists)
404
05f6a46a 405DownloadUpgradeableInterval=0
ff7c76f8 406eval $(apt-config shell DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages)
0c132682 407
fdd15654
MV
408UnattendedUpgradeInterval=0
409eval $(apt-config shell UnattendedUpgradeInterval APT::Periodic::Unattended-Upgrade)
410
ff7c76f8
OA
411AutocleanInterval=0
412eval $(apt-config shell AutocleanInterval APT::Periodic::AutocleanInterval)
413
c98870b0
MV
414BackupArchiveInterval=0
415eval $(apt-config shell BackupArchiveInterval APT::Periodic::BackupArchiveInterval)
ff7c76f8 416
6b519e42
JAK
417Debdelta=1
418eval $(apt-config shell Debdelta APT::Periodic::Download-Upgradeable-Packages-Debdelta)
419
879cbcc8 420# check if we actually have to do anything that requires locking the cache
4c2dcaa1
MV
421if [ $UpdateInterval -eq 0 ] &&
422 [ $DownloadUpgradeableInterval -eq 0 ] &&
423 [ $UnattendedUpgradeInterval -eq 0 ] &&
2783b261 424 [ $BackupArchiveInterval -eq 0 ] &&
4c2dcaa1 425 [ $AutocleanInterval -eq 0 ]; then
879cbcc8
DK
426
427 # check cache size
428 check_size_constraints
429
4c2dcaa1
MV
430 exit 0
431fi
fdd15654 432
c98870b0
MV
433# deal with BackupArchiveInterval
434do_cache_backup $BackupArchiveInterval
0c132682 435
4c2dcaa1
MV
436# sleep random amount of time to avoid hitting the
437# mirrors at the same time
69c28efc 438random_sleep
e20d3bcf 439check_power || exit 0
69c28efc 440
966a4c53
MV
441# include default system language so that "apt-get update" will
442# fetch the right translated package descriptions
443if [ -r /etc/default/locale ]; then
444 . /etc/default/locale
6e239830 445 export LANG LANGUAGE LC_MESSAGES LC_ALL
966a4c53
MV
446fi
447
ff7c76f8 448# update package lists
aff278bf 449UPDATED=0
05f6a46a
MZ
450UPDATE_STAMP=/var/lib/apt/periodic/update-stamp
451if check_stamp $UPDATE_STAMP $UpdateInterval; then
ff7c76f8
OA
452 if eval apt-get $XAPTOPT -y update $XSTDERR; then
453 debug_echo "download updated metadata (success)."
e23ee4c2 454 if which dbus-send >/dev/null && pidof dbus-daemon >/dev/null; then
ff7c76f8
OA
455 if dbus-send --system / app.apt.dbus.updated boolean:true ; then
456 debug_echo "send dbus signal (success)"
457 else
458 debug_echo "send dbus signal (error)"
459 fi
460 else
461 debug_echo "dbus signal not send (command not available)"
05f6a46a 462 fi
ff7c76f8 463 update_stamp $UPDATE_STAMP
aff278bf 464 UPDATED=1
ff7c76f8 465 else
c98870b0 466 debug_echo "download updated metadata (error)"
05f6a46a 467 fi
ff7c76f8
OA
468else
469 debug_echo "download updated metadata (not run)."
fdd15654 470fi
c98870b0
MV
471
472# download all upgradeable packages (if it is requested)
473DOWNLOAD_UPGRADEABLE_STAMP=/var/lib/apt/periodic/download-upgradeable-stamp
aff278bf 474if [ $UPDATED -eq 1 ] && check_stamp $DOWNLOAD_UPGRADEABLE_STAMP $DownloadUpgradeableInterval; then
6b519e42
JAK
475 if [ $Debdelta -eq 1 ]; then
476 debdelta-upgrade >/dev/null 2>&1 || true
477 fi
c98870b0
MV
478 if eval apt-get $XAPTOPT -y -d dist-upgrade $XSTDERR; then
479 update_stamp $DOWNLOAD_UPGRADEABLE_STAMP
480 debug_echo "download upgradable (success)"
481 else
482 debug_echo "download upgradable (error)"
483 fi
484else
485 debug_echo "download upgradable (not run)"
486fi
487
488# auto upgrade all upgradeable packages
489UPGRADE_STAMP=/var/lib/apt/periodic/upgrade-stamp
e23ee4c2 490if which unattended-upgrade >/dev/null && check_stamp $UPGRADE_STAMP $UnattendedUpgradeInterval; then
c98870b0
MV
491 if unattended-upgrade $XUUPOPT; then
492 update_stamp $UPGRADE_STAMP
493 debug_echo "unattended-upgrade (success)"
494 else
495 debug_echo "unattended-upgrade (error)"
496 fi
497else
498 debug_echo "unattended-upgrade (not run)"
499fi
fdd15654 500
ff7c76f8 501# autoclean package archive
de15fbae
MV
502AUTOCLEAN_STAMP=/var/lib/apt/periodic/autoclean-stamp
503if check_stamp $AUTOCLEAN_STAMP $AutocleanInterval; then
c98870b0 504 if eval apt-get $XAPTOPT -y autoclean $XSTDERR; then
ff7c76f8
OA
505 debug_echo "autoclean (success)."
506 update_stamp $AUTOCLEAN_STAMP
507 else
c98870b0 508 debug_echo "autoclean (error)"
ff7c76f8
OA
509 fi
510else
c98870b0 511 debug_echo "autoclean (not run)"
de15fbae
MV
512fi
513
0fad7309
MV
514# check cache size
515check_size_constraints
516
ff7c76f8
OA
517#
518# vim: set sts=4 ai :
519#
520