9 lines
139 B
Bash
Executable File
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
|
|
|