dotfiles/.local/bin/auto-poweroff.sh

30 lines
459 B
Bash
Raw Normal View History

2021-02-04 17:44:55 +01:00
#!/bin/bash -x
# 1: Temps en minutes
# 2: Type dextinction
while true
do
mcpid=$(systemctl show minecraft-server.service --property MainPID --value)
mcstatus=$(ps -q "${mcpid}" -o state --no-headers 2>/dev/null)
if [[ "$mcstatus" == "T" ]]
then
echo . >> /dev/shm/mccount
else
> /dev/shm/mccount
fi
time=$(wc -l /dev/shm/mccount | cut -d" " -f1)
if [[ "$time" -ge "${1:-5}" ]]
then
> /dev/shm/mccount
systemctl "${2:-suspend}"
fi
sleep 60
done