Differences From Artifact [7b9772c1b2]:
- File vwsgui — part of check-in [fa53a2f55d] at 2015-07-17 16:44:30 on branch trunk — Initial files (user: vitus, size: 193) [annotate] [blame] [check-ins using]
To Artifact [e19838553c]:
- File vwsgui — part of check-in [9c13f0d95f] at 2015-07-18 19:42:36 on branch trunk — make vm template script self-sufficient and eliminate vm conf because it conflicts with design goal - VWS VM moved to other host machine shouldn't require VWS, and should happily run with bare QEMU (user: vitus, size: 205) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh if [ -z "$1" ]; then echo "Usage: $0 vm-name" exit 1 fi uri=`vms spiceuri $1` if [ $? -gt 0 ]; then exit 1 fi spicy $uri </dev/null | | | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh if [ -z "$1" ]; then echo "Usage: $0 vm-name" exit 1 fi uri=`vms spiceuri $1` if [ $? -gt 0 ]; then exit 1 fi spicy $uri </dev/null vws spiceuri $1 >/dev/null && /usr/lib/vms/ask_shutdown $1 |