scripts/start-watchdog.sh hinzugefügt

This commit is contained in:
2024-07-29 22:31:32 +02:00
parent 1abefc9aed
commit 2bc25569cf

View File

@@ -0,0 +1,8 @@
#!/bin/bash
killpid="$(pidof BeamMP-Server)"
while true
do
tail --pid=$killpid -f /dev/null
kill "$(pidof tail)"
exit 0
done