From: Michael Vogt <mvo@debian.org>
Date: Tue, 23 Jul 2013 18:09:05 +0000 (+0200)
Subject: debian/apt.postinst:
X-Git-Tag: 0.9.9.3~2
X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/d3213963281a4f910b78679dad35bf59ddbd721c?hp=--cc

debian/apt.postinst:

* debian/apt.postinst:
  - run /etc/kernel/postinst.d/apt-auto-removal once on upgrade
    to ensure that the correct auto-removal list is generated
    (closes: #717615)
---

d3213963281a4f910b78679dad35bf59ddbd721c
diff --git a/debian/apt.postinst b/debian/apt.postinst
index bd814e1af..9ff1e031c 100644
--- a/debian/apt.postinst
+++ b/debian/apt.postinst
@@ -28,6 +28,10 @@ case "$1" in
             chmod -f 0640 /var/log/apt/term.log* || true
         fi
 
+        # create kernel autoremoval blacklist on update
+        if dpkg --compare-versions "$2" lt-nl 0.9.9.3; then
+            /etc/kernel/postinst.d/apt-auto-removal
+        fi
     ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)
diff --git a/debian/changelog b/debian/changelog
index acb27293f..119f09ec3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,12 @@ apt (0.9.9.3) UNRELEASED; urgency=low
   * debian/apt.auto-removal.sh:
     - do not include debug symbol packages for the kernel in the 
       blacklist (closes: #717616)
+  
+  [ Michael Vogt ]
+  * debian/apt.postinst:
+    - run /etc/kernel/postinst.d/apt-auto-removal once on upgrade
+      to ensure that the correct auto-removal list is generated
+      (closes: #717615)
 
  -- Michael Vogt <mvo@debian.org>  Tue, 23 Jul 2013 19:54:31 +0200