]> git.saurik.com Git - apt.git/blame - debian/apt.auto-removal.sh
update changelog
[apt.git] / debian / apt.auto-removal.sh
CommitLineData
a86f8516
SL
1#!/bin/sh
2
3set -e
4
5# Author: Steve Langasek <steve.langasek@canonical.com>
6#
7# Mark as not-for-autoremoval those kernel packages that are:
8# - the currently booted version
9# - the kernel version we've been called for
10# - the latest kernel version (determined using rules copied from the grub
11# package for deciding which kernel to boot)
bac1fd14
SL
12# - the second-latest kernel version, if the booted kernel version is
13# already the latest and this script is called for that same version,
14# to ensure a fallback remains available in the event the newly-installed
15# kernel at this ABI fails to boot
a86f8516
SL
16# In the common case, this results in exactly two kernels saved, but it can
17# result in three kernels being saved. It's better to err on the side of
18# saving too many kernels than saving too few.
19#
20# We generate this list and save it to /etc/apt/apt.conf.d instead of marking
21# packages in the database because this runs from a postinst script, and apt
22# will overwrite the db when it exits.
23
94bfdf69 24
94bfdf69
MV
25eval $(apt-config shell APT_CONF_D Dir::Etc::parts/d)
26test -n "${APT_CONF_D}" || APT_CONF_D="/etc/apt/apt.conf.d"
27config_file=${APT_CONF_D}/01autoremove-kernels
28
29eval $(apt-config shell DPKG Dir::bin::dpkg/f)
30test -n "$DPKG" || DPKG="/usr/bin/dpkg"
a86f8516
SL
31
32installed_version="$1"
33running_version="$(uname -r)"
34
35
36version_test_gt ()
37{
38 local version_test_gt_sedexp="s/[._-]\(pre\|rc\|test\|git\|old\|trunk\)/~\1/g"
39 local version_a="`echo "$1" | sed -e "$version_test_gt_sedexp"`"
40 local version_b="`echo "$2" | sed -e "$version_test_gt_sedexp"`"
94bfdf69 41 $DPKG --compare-versions "$version_a" gt "$version_b"
a86f8516
SL
42 return "$?"
43}
44
c1f8f8c0 45list=$(${DPKG} -l 'linux-image-[0-9]*'|awk '/^ii/ && $2 !~ /-dbg$/ { print $2 }' | sed -e's/linux-image-//')
a86f8516
SL
46
47latest_version=""
bac1fd14 48previous_version=""
a86f8516
SL
49for i in $list; do
50 if version_test_gt "$i" "$latest_version"; then
bac1fd14 51 previous_version="$latest_version"
a86f8516 52 latest_version="$i"
bac1fd14
SL
53 elif version_test_gt "$i" "$previous_version"; then
54 previous_version="$i"
a86f8516
SL
55 fi
56done
57
bac1fd14
SL
58if [ "$latest_version" != "$installed_version" ] \
59 || [ "$latest_version" != "$running_version" ] \
60 || [ "$installed_version" != "$running_version" ]
61then
62 # We have at least two kernels that we have reason to think the
63 # user wants, so don't save the second-newest version.
64 previous_version=
65fi
66
a86f8516
SL
67kernels=$(sort -u <<EOF
68$latest_version
69$installed_version
70$running_version
bac1fd14 71$previous_version
a86f8516
SL
72EOF
73)
74
75cat > "$config_file".dpkg-new <<EOF
90b9659c 76// File autogenerated by $0, do not edit
a86f8516
SL
77APT
78{
79 NeverAutoRemove
80 {
81EOF
82for kernel in $kernels; do
50dba2a9
AC
83 echo " \"^linux-image-${kernel}$\";" >> "$config_file".dpkg-new
84 echo " \"^linux-image-extra-${kernel}$\";" >> "$config_file".dpkg-new
85 echo " \"^linux-signed-image-${kernel}$\";" >> "$config_file".dpkg-new
86 echo " \"^linux-backports-modules-.*-${kernel}$\";" >> "$config_file".dpkg-new
90b9659c 87 echo " \"^linux-headers-${kernel}$\";" >> "$config_file".dpkg-new
a86f8516
SL
88done
89cat >> "$config_file".dpkg-new <<EOF
90 };
91};
92EOF
93mv "$config_file".dpkg-new "$config_file"