#!/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" \ "$@"