6 # This file understands the following apt configuration variables:
8 # "APT::Periodic::Update-Package-Lists=1"
9 # - Do "apt-get update" automatically every n-days (0=disable)
11 # "APT::Periodic::Download-Upgradeable-Packages=0",
12 # - Do "apt-get upgrade --download-only" every n-days (0=disable)
14 # "APT::Periodic::AutocleanInterval"
15 # - Do "apt-get autoclean" every n-days (0=disable)
17 # "APT::Periodic::Unattended-Upgrade"
18 # - Run the "unattended-upgrade" security upgrade script
19 # every n-days (0=disabled)
20 # Requires the package "unattended-upgrades" and will write
21 # a log in /var/log/unattended-upgrades
23 # "APT::Archives::MaxAge",
24 # - Set maximum allowed age of a cache package file. If a cache
25 # package file is older it is deleted (0=disable)
27 # "APT::Archives::MaxSize",
28 # - Set maximum size of the cache in MB (0=disable). If the cache
29 # is bigger, cached package files are deleted until the size
30 # requirement is met (the biggest packages will be deleted
33 # "APT::Archives::MinAge"
34 # - Set minimum age of a package file. If a file is younger it
35 # will not be deleted (0=disable). Usefull to prevent races
36 # and to keep backups of the packages for emergency.
44 if [ $interval -eq 0 ]; then
48 if [ ! -f $stamp ]; then
52 # compare midnight today to midnight the day the stamp was updated
53 stamp
=$(date --date=$(date -r $stamp --iso-8601) +%s
)
54 now
=$(date --date=$(date --iso-8601) +%s
)
55 delta
=$(($now-$stamp))
57 # intervall is in days,
58 interval
=$(($interval*60*60*24))
60 #echo "interval=$interval, now=$now, stamp=$stamp, delta=$delta"
62 if [ $delta -ge $interval ]; then
78 # we check here if autoclean was enough sizewise
79 check_size_constraints
()
85 CacheDir
="var/cache/apt"
86 CacheArchive
="archives/"
87 eval $(apt-config shell MaxAge APT::Archives::MaxAge)
88 eval $(apt-config shell MinAge APT::Archives::MinAge)
89 eval $(apt-config shell MaxSize APT::Archives::MaxSize)
90 eval $(apt-config shell Dir Dir)
91 eval $(apt-config shell CacheDir Dir::Cache)
92 eval $(apt-config shell CacheArchive Dir::Cache::archives)
95 if [ -z "$CacheDir" -o -z "$CacheArchive" ]; then
96 echo "empty Dir::Cache or Dir::Cache::archives, exiting"
100 Cache
="${Dir%/}/${CacheDir%/}/${CacheArchive%/}/"
103 if [ ! $MaxAge -eq 0 ] && [ ! $MinAge -eq 0 ]; then
104 find $Cache -name "*.deb" \
( -mtime +$MaxAge -and -ctime +$MaxAge \
) -and -not \
( -mtime -$MinAge -or -ctime -$MinAge \
) -print0 | xargs -r -0 rm -f
105 elif [ ! $MaxAge -eq 0 ]; then
106 find $Cache -name "*.deb" -ctime +$MaxAge -and -mtime +$MaxAge -print0 | xargs -r -0 rm -f
110 if [ ! $MaxSize -eq 0 ]; then
112 MaxSize
=$(($MaxSize*1024))
115 now
=$(date --date=$(date --iso-8601) +%s
)
116 MinAge
=$(($MinAge*24*60*60))
118 # reverse-sort by mtime
119 for file in $(ls -rt $Cache/*.deb 2>/dev/null); do
122 # check if the cache is small enough
123 if [ $size -lt $MaxSize ]; then
127 # check for MinAge of the file
128 if [ ! $MinAge -eq 0 ]; then
129 # check both ctime and mtime
130 mtime
=$(stat -c %Y $file)
131 ctime
=$(stat -c %Z $file)
132 if [ $mtime -gt $ctime ]; then
133 delta
=$(($now-$mtime))
135 delta
=$(($now-$ctime))
137 #echo "$file ($delta), $MinAge"
138 if [ $delta -le $MinAge ]; then
139 #echo "Skiping $file (delta=$delta)"
152 DownloadUpgradeableInterval
=0
153 eval $(apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages)
154 AutocleanInterval
=$DownloadUpgradeableInterval
155 eval $(apt-config shell AutocleanInterval APT::Periodic::Autoclean)
157 UnattendedUpgradeInterval
=0
158 eval $(apt-config shell UnattendedUpgradeInterval APT::Periodic::Unattended-Upgrade)
161 # laptop check, on_ac_power returns:
162 # 0 (true) System is on mains power
163 # 1 (false) System is not on mains power
164 # 255 (false) Power status could not be determined
165 # Desktop systems always return 255 it seems
166 if which on_ac_power
>/dev
/null
; then
168 if [ $?
-eq 1 ]; then
173 UPDATE_STAMP
=/var
/lib
/apt
/periodic
/update
-stamp
174 if check_stamp
$UPDATE_STAMP $UpdateInterval; then
175 if apt
-get -qq update
2>/dev
/null
; then
176 if which dbus
-send >/dev
/null
; then
177 dbus
-send --system / app.apt.dbus.updated boolean
:true
179 update_stamp
$UPDATE_STAMP
183 DOWNLOAD_UPGRADEABLE_STAMP
=/var
/lib
/apt
/periodic
/download
-upgradeable-stamp
184 if check_stamp
$DOWNLOAD_UPGRADEABLE_STAMP $DownloadUpgradeableInterval; then
185 apt
-get -qq -d dist
-upgrade 2>/dev
/null
186 update_stamp
$DOWNLOAD_UPGRADEABLE_STAMP
189 AUTOCLEAN_STAMP
=/var
/lib
/apt
/periodic
/autoclean
-stamp
190 if check_stamp
$AUTOCLEAN_STAMP $AutocleanInterval; then
191 apt
-get -qq autoclean
192 update_stamp
$AUTOCLEAN_STAMP
195 UPGRADE_STAMP
=/var
/lib
/apt
/periodic
/upgrade
-stamp
196 if check_stamp
$UPGRADE_STAMP $UnattendedUpgradeInterval; then
198 update_stamp
$UPGRADE_STAMP
202 check_size_constraints