From: martin f. krafft Date: Thu, 27 Feb 2014 17:41:53 +0000 (+0100) Subject: optional --restarting after install X-Git-Url: https://git.madduck.net/code/vinst.git/commitdiff_plain/6a3968790b2b2704e57aa4d0e272fb4abbc3d369 optional --restarting after install --- diff --git a/vinst b/vinst index 02fcef1..dc0b82b 100755 --- a/vinst +++ b/vinst @@ -11,6 +11,7 @@ SUITE=wheezy CONSOLE='console=tty0 console=ttyS0,115200n8' DEBUG=0 WIPE=0 +RESTART=0 while [ -n "$1" ]; do case "$1" in @@ -84,6 +85,9 @@ while [ -n "$1" ]; do (--wipe) WIPE=1 ;; + (--console) + RESTART=1 + ;; esac shift done @@ -135,6 +139,7 @@ cat >&2 <<_eof disk: $DISK GiB wipe: $WIPE console: $CONSOLE + restart: $RESTART net bridge: $BRIDGE _eof if [ -n "$IPADDRESS" ]; then @@ -180,4 +185,7 @@ virt-install --connect=$QEMU_URI \ "$@" virsh --connect=$QEMU_URI console $HOSTNAME -virsh --connect=$QEMU_URI "start $HOSTNAME; console $HOSTNAME" + +if [ $RESTART = 1]; then + virsh --connect=$QEMU_URI "start $HOSTNAME; console $HOSTNAME" +fi