]> git.madduck.net Git - code/vinst.git/blobdiff - vinst

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

multi-suite for di-update
[code/vinst.git] / vinst
diff --git a/vinst b/vinst
index bf0a14d99a0ac1f22282dba22008a6fbbb178b40..6b6ca5dc60ef4009f137f5fcba3ee09e1e70d0f0 100755 (executable)
--- a/vinst
+++ b/vinst
@@ -93,7 +93,7 @@ while [ -n "$1" ]; do
     (--wipe)
       WIPE=1
       ;;
-    (--console)
+    (--restart)
       RESTART=1
       ;;
   esac
@@ -173,6 +173,7 @@ echo >&2
 
 virsh --connect=$QEMU_URI vol-create-as $STORAGE_POOL virt-$HOSTNAME ${DISK}G
 if [ $WIPE = 1 ]; then
+  echo >&2 "Wiping disk…"
   virsh --connect=$QEMU_URI vol-wipe --pool $STORAGE_POOL --algorithm zero virt-$HOSTNAME
 fi
 
@@ -200,6 +201,6 @@ virt-install --connect=$QEMU_URI \
 
 virsh --connect=$QEMU_URI console $HOSTNAME
 
-if [ $RESTART = 1]; then
+if [ $RESTART = 1 ]; then
   virsh --connect=$QEMU_URI "start $HOSTNAME; console $HOSTNAME"
 fi