get dpkg from apt-config as well and add robustness against missing/failing apt-confi...
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 5 Nov 2012 09:27:17 +0000 (10:27 +0100)
committerMichael Vogt <mvo@debian.org>
Thu, 11 Jul 2013 05:24:39 +0000 (07:24 +0200)
Conflicts:
debian/apt.auto-removal.sh

debian/apt.auto-removal.sh

index 598aee1..17becd3 100644 (file)
@@ -21,7 +21,14 @@ 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)"
@@ -32,11 +39,11 @@ 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/ { print $2 }' | sed -e's/linux-image-//')
 
 latest_version=""
 previous_version=""