X-Git-Url: https://git.madduck.net/code/vinst.git/blobdiff_plain/599d602fabf5b0e92a7285c40f39413dd226ff52..2fd1f59b2c1e11939a8e4312b0392bc8a803c7da:/vinst?ds=sidebyside diff --git a/vinst b/vinst index 6ca0f76..f323d56 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,9 @@ while [ -n "$1" ]; do fi ARCH="$1" ;; + (--debug) + DEBUG=1 + ;; esac shift done @@ -145,7 +149,10 @@ echo >&2 set -v virsh --connect=$QEMU_URI vol-create-as $STORAGE_POOL virt-$HOSTNAME ${DISK}G +[ $DEBUG = 1 ] && DEBUGFLAG=--debug + virt-install --connect=$QEMU_URI \ + ${DEBUGFLAG:-} \ -n $HOSTNAME \ -r $RAM \ --disk vol=$STORAGE_POOL/virt-$HOSTNAME \ @@ -157,7 +164,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" \ "$@"