1
0
Fork 0
ansible-legacy/roles/libvirthost/files/etc/libvirt/hooks/qemu

9 lines
139 B
Bash
Executable File

#!/bin/sh
GUEST_NAME="$1"
STATE_NAME="$2"
if [ "$STATE_NAME" = "stopped" ] && [ "$GUEST_NAME" = "rift" ]; then
systemctl suspend;
fi