19 lines
640 B
Plaintext
19 lines
640 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
OBJECT="$1"
|
||
|
OPERATION="$2"
|
||
|
|
||
|
if [[ $OBJECT == "win10" ]]; then
|
||
|
case "$OPERATION" in
|
||
|
"prepare")
|
||
|
# systemctl start libvirt-nosleep@"$OBJECT" 2>&1 | tee -a /var/log/libvirt/custom_hooks.log
|
||
|
/etc/libvirt/hooks/qemu.d/win10/vfio-script.sh start 2>&1 | tee -a /var/log/libvirt/vfio-script.log
|
||
|
;;
|
||
|
|
||
|
"release")
|
||
|
# systemctl stop libvirt-nosleep@"$OBJECT" 2>&1 | tee -a /var/log/libvirt/custom_hooks.log
|
||
|
/etc/libvirt/hooks/qemu.d/win10/vfio-script.sh stop 2>&1 | tee -a /var/log/libvirt/vfio-script.log
|
||
|
;;
|
||
|
esac
|
||
|
fi
|