-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoshutdown.sh
78 lines (66 loc) · 1.78 KB
/
autoshutdown.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/sh
DISCORD_WEBHOOK_URL=$1
BIN_PATH="/run/current-system/sw/bin"
webhook() {
URL="${DISCORD_WEBHOOK_URL}"
DATA=$($BIN_PATH/cat << EOF
{
"username": "Ficsit Corp",
"embeds": [{
"title": "AWS Instance Status",
"description": "Instance is shutting down...",
"color": "45973"
}]
}
EOF
)
$BIN_PATH/curl -H "Content-Type: application/json" -X POST -d "$DATA" "$URL"
}
# Function to sum array elements
sumOfArrayElements() {
sum=0
for byte in "$@"; do
sum=$((sum + byte))
done
echo "$sum"
}
# Function to check for traffic on a given port
checkForTraffic() {
PORT_TO_CHECK=$1
NUMBER_OF_CHECKS=$2
CONNECTION_BYTES=()
for ((connections=0; connections<NUMBER_OF_CHECKS; connections++)); do
CHECK_CONNECTION_BYTES=$($BIN_PATH/ss -luna "( dport = :$PORT_TO_CHECK or sport = :$PORT_TO_CHECK )" | $BIN_PATH/awk '{s+=$2} END {print s}')
CONNECTION_BYTES+=($CHECK_CONNECTION_BYTES)
done
sumOfArrayElements "${CONNECTION_BYTES[@]}"
}
# Function to shut down the system
shutdownSequence() {
echo "No activity detected. Shutting down."
systemctl stop satisfactory.service
systemctl start satisfactory-backup.service
webhook
sleep 10
shutdown -h now
}
# Main function
main() {
IDLE_COUNTER=0
TOTAL_IDLE_SECONDS=300
GAME_PORT=7777
CHECKS=5
while [ $IDLE_COUNTER -lt $TOTAL_IDLE_SECONDS ]; do
ACTIVE_CONNECTIONS=$(checkForTraffic "$GAME_PORT" "$CHECKS")
if [ "$ACTIVE_CONNECTIONS" -eq 0 ]; then
IDLE_COUNTER=$((IDLE_COUNTER + 1))
echo "No connection detected."
else
echo "Connection detected."
IDLE_COUNTER=0
fi
sleep 1
done
shutdownSequence
}
main