]> git.saurik.com Git - apt.git/blobdiff - debian/apt.auto-removal.sh
update changelog
[apt.git] / debian / apt.auto-removal.sh
index 8b0f1cf69d5e12f51cffc78fcdb91d641af20df9..d105f440aa6f6601908c71ae35db247a00f8f70e 100644 (file)
@@ -22,7 +22,6 @@ set -e
 # will overwrite the db when it exits.
 
 
-# 
 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
@@ -43,7 +42,7 @@ version_test_gt ()
        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=""
@@ -74,7 +73,7 @@ EOF
 )
 
 cat > "$config_file".dpkg-new <<EOF
-# File autogenerated by $0, do not edit
+// File autogenerated by $0, do not edit
 APT
 {
   NeverAutoRemove
@@ -85,6 +84,7 @@ for kernel in $kernels; do
        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
   };