From 3106c3977cf8e0679adab0a63fd131ca7eed7c1a Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Wed, 27 Jan 2016 00:57:00 +0000 Subject: [PATCH] linux-headers: Make postinst script less verbose (see: #734266) --- debian/changelog | 1 + debian/templates/headers.postinst.in | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index cd140a379..13c6f8fa6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 23 Jan 2016 08:23:05 +0000 diff --git a/debian/templates/headers.postinst.in b/debian/templates/headers.postinst.in index 68b7ec788..c13e6dc54 100644 --- a/debian/templates/headers.postinst.in +++ b/debian/templates/headers.postinst.in @@ -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"; }