9 lines
139 B
Plaintext
9 lines
139 B
Plaintext
|
#!/bin/sh
|
||
|
GUEST_NAME="$1"
|
||
|
STATE_NAME="$2"
|
||
|
|
||
|
if [ "$STATE_NAME" = "stopped" ] && [ "$GUEST_NAME" = "rift" ]; then
|
||
|
systemctl suspend;
|
||
|
fi
|
||
|
|