2025-05-05 00:51:40 -07:00

12 lines
207 B
Bash

#!/bin/sh
cleanup() {
./rcon-cli --password password stop
}
trap 'cleanup' SIGTERM SIGINT
java -Xmx1024M -Xms1024M -jar server.jar nogui &
wait $! # wait for SIGTERM
wait $! # wait for server to stop