linux-headers: Make postinst script less verbose (see: #734266)

This commit is contained in:
Ben Hutchings 2016-01-27 00:57:00 +00:00
parent 2b5391e7a4
commit 3106c3977c
2 changed files with 2 additions and 2 deletions

1
debian/changelog vendored
View File

@ -19,6 +19,7 @@ linux (4.4-1~exp2) UNRELEASED; urgency=medium
* [mips*] linux-image: Remove debconf question for requirement of initramfs
* linux-image: Remove unnecessary debconf initialisations
* linux-{headers,image}: Remove support for version-specific hooks
* linux-headers: Make postinst script less verbose (see: #734266)
-- Ian Campbell <ijc@debian.org> Sat, 23 Jan 2016 08:23:05 +0000

View File

@ -8,8 +8,7 @@ $|=1;
my $version = "@abiname@@localversion@";
if (-d "/etc/kernel/header_postinst.d") {
print STDERR "Examining /etc/kernel/header_postinst.d.\n";
system ("run-parts --verbose --exit-on-error --arg=$version " .
system ("run-parts --report --exit-on-error --arg=$version " .
"/etc/kernel/header_postinst.d") &&
die "Failed to process /etc/kernel/header_postinst.d";
}