qemush/qemu/launchers/windows10

14 lines
348 B
Bash
Executable file

#!/bin/sh -x
# Store VM name in environment variable
export QEMUSH_NAME
[ -z "$QEMUSH_NAME" ] && QEMUSH_NAME=$(basename "$0")
# Launch the virtual machine
exec kvm-spice \
-monitor "unix:$(sockpath),server,nowait" \
-drive file="$(diskpath)",if=virtio \
-net user,hostname="${QEMUSH_NAME}" \
-usbdevice tablet \
-name "$QEMUSH_NAME" \
"$@"