]> git.saurik.com Git - apt.git/blobdiff - debian/apt.auto-removal.sh
query an empty pkgAcqIndexDiffs if index is up-to-date
[apt.git] / debian / apt.auto-removal.sh
index 8f6fc2efcf522d99aa73e38c352e215d669a4544..d105f440aa6f6601908c71ae35db247a00f8f70e 100644 (file)
@@ -9,6 +9,10 @@ set -e
 #  - the kernel version we've been called for
 #  - the latest kernel version (determined using rules copied from the grub
 #    package for deciding which kernel to boot)
+#  - the second-latest kernel version, if the booted kernel version is
+#    already the latest and this script is called for that same version,
+#    to ensure a fallback remains available in the event the newly-installed
+#    kernel at this ABI fails to boot
 # In the common case, this results in exactly two kernels saved, but it can
 # result in three kernels being saved.  It's better to err on the side of
 # saving too many kernels than saving too few.
@@ -17,7 +21,13 @@ set -e
 # packages in the database because this runs from a postinst script, and apt
 # will overwrite the db when it exits.
 
-config_file=/etc/apt/apt.conf.d/01autoremove-kernels
+
+eval $(apt-config shell APT_CONF_D Dir::Etc::parts/d)
+test -n "${APT_CONF_D}" || APT_CONF_D="/etc/apt/apt.conf.d"
+config_file=${APT_CONF_D}/01autoremove-kernels
+
+eval $(apt-config shell DPKG Dir::bin::dpkg/f)
+test -n "$DPKG" || DPKG="/usr/bin/dpkg"
 
 installed_version="$1"
 running_version="$(uname -r)"
@@ -28,37 +38,53 @@ version_test_gt ()
        local version_test_gt_sedexp="s/[._-]\(pre\|rc\|test\|git\|old\|trunk\)/~\1/g"
        local version_a="`echo "$1" | sed -e "$version_test_gt_sedexp"`"
        local version_b="`echo "$2" | sed -e "$version_test_gt_sedexp"`"
-       dpkg --compare-versions "$version_a" gt "$version_b"
+       $DPKG --compare-versions "$version_a" gt "$version_b"
        return "$?"
 }
 
-list=$(dpkg -l 'linux-image-[0-9]*'|awk '/^ii/ { print $2 }' | sed -e's/linux-image-//')
+list=$(${DPKG} -l 'linux-image-[0-9]*'|awk '/^ii/ && $2 !~ /-dbg$/ { print $2 }' | sed -e's/linux-image-//')
 
 latest_version=""
+previous_version=""
 for i in $list; do
        if version_test_gt "$i" "$latest_version"; then
+               previous_version="$latest_version"
                latest_version="$i"
+       elif version_test_gt "$i" "$previous_version"; then
+               previous_version="$i"
        fi
 done
 
+if [ "$latest_version" != "$installed_version" ] \
+   || [ "$latest_version" != "$running_version" ] \
+   || [ "$installed_version" != "$running_version" ]
+then
+       # We have at least two kernels that we have reason to think the
+       # user wants, so don't save the second-newest version.
+       previous_version=
+fi
+
 kernels=$(sort -u <<EOF
 $latest_version
 $installed_version
 $running_version
+$previous_version
 EOF
 )
 
 cat > "$config_file".dpkg-new <<EOF
-# File autogenerated by $0, do not edit
+// File autogenerated by $0, do not edit
 APT
 {
   NeverAutoRemove
   {
 EOF
 for kernel in $kernels; do
-       echo "    \"^linux-image-$kernel.*\";" >> "$config_file".dpkg-new
-       echo "    \"^linux-image-extra-$kernel.*\";" >> "$config_file".dpkg-new
-       echo "    \"^linux-signed-image-$kernel.*\";" >> "$config_file".dpkg-new
+       echo "    \"^linux-image-${kernel}$\";" >> "$config_file".dpkg-new
+       echo "    \"^linux-image-extra-${kernel}$\";" >> "$config_file".dpkg-new
+       echo "    \"^linux-signed-image-${kernel}$\";" >> "$config_file".dpkg-new
+       echo "    \"^linux-backports-modules-.*-${kernel}$\";" >> "$config_file".dpkg-new
+       echo "    \"^linux-headers-${kernel}$\";" >> "$config_file".dpkg-new
 done
 cat >> "$config_file".dpkg-new <<EOF
   };