[dak/master] Don't be verbose in unchecked
Signed-off-by: Mark Hymers <mhy@debian.org>
---
config/debian/common | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/config/debian/common b/config/debian/common
index 84640e2..3e8aefb 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"
}
--
1.7.2.5
Reply to: