summaryrefslogtreecommitdiff
path: root/systemd/system/qemu
blob: 98ca58240914f2ed71ef909379497b0386e9bfc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

source "/etc/conf.d/qemu.d/$1"
args+=(
	-name "$1",debug-threads=on
	-pidfile "/run/qemu-$1/pid"
	-vnc unix:"/run/qemu-$1/vnc.sock"
	-monitor unix:"/run/qemu-$1/monitor.sock",server,nowait
	-daemonize
)
exec qemu-system-"${system}" "${args[@]}"