Multiple cleanups to appease lintian.
authorRaphaël Hertzog <hertzog@debian.org>
Thu, 12 Jan 2017 15:57:43 +0000 (16:57 +0100)
committerRaphaël Hertzog <hertzog@debian.org>
Thu, 12 Jan 2017 15:57:43 +0000 (16:57 +0100)
backend/initramfs-tools/kms.hook [changed mode: 0644->0755]
debian/changelog
debian/control
debian/live-boot-initramfs-tools.postinst
debian/live-boot-initramfs-tools.postrm

old mode 100644 (file)
new mode 100755 (executable)
index 0504232..b14ac26 100644 (file)
@@ -6,6 +6,7 @@ live-boot (1:20170112) unstable; urgency=medium
     Thanks to Frank Lillo for the report and Evgeni Golov for the patch.
   * Improve 9990-misc-helpers.sh when /sys/block/ is empty.
     Closes: #847802
     Thanks to Frank Lillo for the report and Evgeni Golov for the patch.
   * Improve 9990-misc-helpers.sh when /sys/block/ is empty.
     Closes: #847802
+  * Multiple cleanups to appease lintian.
 
   [ Kristian Klausen ]
   * Add "nls_ascii" module in the initrd so that we can access FAT
 
   [ Kristian Klausen ]
   * Add "nls_ascii" module in the initrd so that we can access FAT
index 96fee1b..2c67aca 100644 (file)
@@ -5,7 +5,7 @@ Maintainer: Live Systems Maintainers <debian-live@lists.debian.org>
 Uploaders: Iain R. Learmonth <irl@debian.org>
 Build-Depends:
  debhelper (>= 9),
 Uploaders: Iain R. Learmonth <irl@debian.org>
 Build-Depends:
  debhelper (>= 9),
-Standards-Version: 3.9.6
+Standards-Version: 3.9.8
 Homepage: https://debian-live.alioth.debian.org/live-boot/
 Vcs-Browser: https://anonscm.debian.org/cgit/debian-live/live-boot.git
 Vcs-Git: https://anonscm.debian.org/git/debian-live/live-boot.git
 Homepage: https://debian-live.alioth.debian.org/live-boot/
 Vcs-Browser: https://anonscm.debian.org/cgit/debian-live/live-boot.git
 Vcs-Git: https://anonscm.debian.org/git/debian-live/live-boot.git
index d11c8d9..7239bfd 100644 (file)
@@ -4,7 +4,7 @@ set -e
 
 case "${1}" in
        configure)
 
 case "${1}" in
        configure)
-               if [ -x /usr/sbin/update-initramfs ] && [ -e /etc/initramfs-tools/initramfs.conf ]
+               if which update-initramfs >/dev/null 2>&1 && [ -e /etc/initramfs-tools/initramfs.conf ]
                then
                        update-initramfs -u
                fi
                then
                        update-initramfs -u
                fi
index 370b6c3..57c472e 100644 (file)
@@ -4,7 +4,7 @@ set -e
 
 case "${1}" in
        remove)
 
 case "${1}" in
        remove)
-               if [ -x /usr/sbin/update-initramfs ] && [ -e /etc/initramfs-tools/initramfs.conf ]
+               if which update-initramfs >/dev/null 2>&1 && [ -e /etc/initramfs-tools/initramfs.conf ]
                then
                        update-initramfs -u
                fi
                then
                        update-initramfs -u
                fi