14 lines
155 B
Bash
14 lines
155 B
Bash
#!/bin/bash
|
|
|
|
echo "starting entrypoint.sh"
|
|
set -e
|
|
|
|
|
|
parms=
|
|
|
|
./gmodserver install
|
|
|
|
trap './home/steam/gmodserver stop' SIGTERM
|
|
./gmodserver debug
|
|
wait "$!"
|