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

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:

bash syntax fix for restarts
authormartin f. krafft <madduck@madduck.net>
Thu, 27 Feb 2014 18:49:08 +0000 (19:49 +0100)
committermartin f. krafft <madduck@madduck.net>
Thu, 27 Feb 2014 18:49:08 +0000 (19:49 +0100)
vinst

diff --git a/vinst b/vinst
index f5eb790e237fea091e81726a6eb671132cee8a14..6b6ca5dc60ef4009f137f5fcba3ee09e1e70d0f0 100755 (executable)
--- a/vinst
+++ b/vinst
@@ -201,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