X-Git-Url: https://git.madduck.net/code/vinst.git/blobdiff_plain/599d602fabf5b0e92a7285c40f39413dd226ff52..a7ee140401c5f29feb091bb1ac93482174be2015:/vinst diff --git a/vinst b/vinst index 6ca0f76..8e157f1 100755 --- a/vinst +++ b/vinst @@ -9,6 +9,7 @@ STORAGE_POOL=default QEMU_URI=qemu:///system SUITE=wheezy CONSOLE='console=tty0 console=ttyS0,115200n8' +DEBUG=0 while [ -n "$1" ]; do case "$1" in @@ -75,6 +76,10 @@ while [ -n "$1" ]; do fi ARCH="$1" ;; + (--debug) + DEBUG=1 + set -vx + ;; esac shift done @@ -142,10 +147,15 @@ fi echo >&2 -set -v virsh --connect=$QEMU_URI vol-create-as $STORAGE_POOL virt-$HOSTNAME ${DISK}G +if [ $DEBUG = 1 ]; then + DEBUGFLAG=--debug + extra_args="$extra_args DEBCONF_DEBUG=5" +fi + virt-install --connect=$QEMU_URI \ + ${DEBUGFLAG:-} \ -n $HOSTNAME \ -r $RAM \ --disk vol=$STORAGE_POOL/virt-$HOSTNAME \ @@ -157,7 +167,7 @@ virt-install --connect=$QEMU_URI \ -l $BASEDIR/installer-amd64 \ --initrd-inject=$BASEDIR/preseed/$SUITE/preseed.cfg \ --initrd-inject=$tmpdir/commands.tar \ - --prompt --noautoconsole --autostart \ + --noautoconsole --autostart \ --extra-args="$extra_args" \ "$@"