X-Git-Url: https://git.madduck.net/code/vinst.git/blobdiff_plain/3e94d8ee6d8b6acd6711e891d543864293e00f97..a7ee140401c5f29feb091bb1ac93482174be2015:/vinst diff --git a/vinst b/vinst index 51a87e9..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 @@ -67,6 +68,18 @@ while [ -n "$1" ]; do fi DISK="$1" ;; + (-a|--arch) + shift + if [ -z "$1" ]; then + echo >&2 'E: --arch/-a needs size argument' + exit 1 + fi + ARCH="$1" + ;; + (--debug) + DEBUG=1 + set -vx + ;; esac shift done @@ -107,8 +120,13 @@ else BRIDGE=virt-br fi +if [ -z "$ARCH" ]; then + ARCH=$(dpkg --print-architecture) +fi + cat >&2 <<_eof hostname: $HOSTNAME + arch: $ARCH ram: $RAM MiB disk: $DISK GiB console: $CONSOLE @@ -127,11 +145,17 @@ else _eof 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 \ @@ -143,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" \ "$@"