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