From: Mark Hymers Date: Mon, 2 Jan 2012 19:59:30 +0000 (+0000) Subject: Don't be verbose in unchecked X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=bfaf43c6e315b0b0d4c852682a65d357e47b7ab8 Don't be verbose in unchecked Signed-off-by: Mark Hymers --- 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" }