From bfaf43c6e315b0b0d4c852682a65d357e47b7ab8 Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Mon, 2 Jan 2012 19:59:30 +0000 Subject: [PATCH] Don't be verbose in unchecked Signed-off-by: Mark Hymers --- config/debian/common | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/config/debian/common b/config/debian/common index 84640e2a..3e8aefbf 100644 --- a/config/debian/common +++ b/config/debian/common @@ -56,13 +56,17 @@ function punew_do() { # These versions used in dinstall function punew() { - log "Doing automated p-u-new processing" + if [ "${PROGRAM}" = "dinstall" ]; then + log "Doing automated p-u-new processing" + fi cd "${queuedir}/p-u-new" punew_do "$1" } function opunew() { - log "Doing automated o-p-u-new processing" + if [ "${PROGRAM}" = "dinstall" ]; then + log "Doing automated o-p-u-new processing" + fi cd "${queuedir}/o-p-u-new" punew_do "$1" } -- 2.39.2