From d78be8acfdef2c88febb20f3650cad52a309b9e1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Hertzog?= Date: Thu, 12 Jan 2017 16:57:43 +0100 Subject: [PATCH] Multiple cleanups to appease lintian. --- backend/initramfs-tools/kms.hook | 0 debian/changelog | 1 + debian/control | 2 +- debian/live-boot-initramfs-tools.postinst | 2 +- debian/live-boot-initramfs-tools.postrm | 2 +- 5 files changed, 4 insertions(+), 3 deletions(-) mode change 100644 => 100755 backend/initramfs-tools/kms.hook diff --git a/backend/initramfs-tools/kms.hook b/backend/initramfs-tools/kms.hook old mode 100644 new mode 100755 diff --git a/debian/changelog b/debian/changelog index 0504232..b14ac26 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 + * Multiple cleanups to appease lintian. [ Kristian Klausen ] * Add "nls_ascii" module in the initrd so that we can access FAT diff --git a/debian/control b/debian/control index 96fee1b..2c67aca 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: Live Systems Maintainers Uploaders: Iain R. Learmonth 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 diff --git a/debian/live-boot-initramfs-tools.postinst b/debian/live-boot-initramfs-tools.postinst index d11c8d9..7239bfd 100644 --- a/debian/live-boot-initramfs-tools.postinst +++ b/debian/live-boot-initramfs-tools.postinst @@ -4,7 +4,7 @@ set -e 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 diff --git a/debian/live-boot-initramfs-tools.postrm b/debian/live-boot-initramfs-tools.postrm index 370b6c3..57c472e 100644 --- a/debian/live-boot-initramfs-tools.postrm +++ b/debian/live-boot-initramfs-tools.postrm @@ -4,7 +4,7 @@ set -e 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 -- 2.1.4