prophunt-garrysmod/entrypoint.sh

14 lines
242 B
Bash
Raw Normal View History

#!/bin/bash
echo "starting entrypoint.sh"
set -e
2018-09-25 12:35:39 +02:00
parms="-game garrysmod +gamemode terrortown "$(printf "%s " "$@")
echo "starting with $parms"
2018-09-25 12:25:21 +02:00
./gmodserver install
2018-09-25 12:25:21 +02:00
trap './home/steam/gmodserver stop' SIGTERM
./gmodserver debug
2018-09-23 10:13:04 +02:00
wait "$!"