Add a simple script to manage all the machines
parent
098d24b61d
commit
32c4e15e3d
@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -exu
|
||||
|
||||
for vm in output/*/; do
|
||||
case "$1" in
|
||||
'start')
|
||||
( cd "$vm" && ./qemu.sh ) &
|
||||
;;
|
||||
'stop')
|
||||
echo system_powerdown | ncat -U "$vm/monitor.sock"
|
||||
;;
|
||||
'attach')
|
||||
remote-viewer "spice+unix://./$vm/spice.sock"
|
||||
;;
|
||||
*)
|
||||
echo >&2 "Usage: $0 (start | stop | attach)"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
Loading…
Reference in New Issue