mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
12 lines
197 B
Bash
12 lines
197 B
Bash
#!/bin/sh
|
|
|
|
cleanup() {
|
|
./rcon-cli --password password stop
|
|
}
|
|
|
|
trap 'cleanup' TERM
|
|
|
|
java -Xmx1024M -Xms1024M -jar server.jar nogui &
|
|
wait $! # wait for SIGTERM
|
|
wait $! # wait for server to stop
|