From a7ee140401c5f29feb091bb1ac93482174be2015 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 27 Feb 2014 18:39:12 +0100 Subject: [PATCH] make --debug also turn on shell and debconf debugging --- vinst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vinst b/vinst index f323d56..8e157f1 100755 --- a/vinst +++ b/vinst @@ -78,6 +78,7 @@ while [ -n "$1" ]; do ;; (--debug) DEBUG=1 + set -vx ;; esac shift @@ -146,10 +147,12 @@ fi echo >&2 -set -v virsh --connect=$QEMU_URI vol-create-as $STORAGE_POOL virt-$HOSTNAME ${DISK}G -[ $DEBUG = 1 ] && DEBUGFLAG=--debug +if [ $DEBUG = 1 ]; then + DEBUGFLAG=--debug + extra_args="$extra_args DEBCONF_DEBUG=5" +fi virt-install --connect=$QEMU_URI \ ${DEBUGFLAG:-} \ -- 2.39.5