af18cc6c91
* Allow to build a particular series (e.g. Airport Europe) * Refactor start/stop scripts. * Add script for stopping a game.
6 lines
206 B
Bash
Executable File
6 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
# this should be run as the airport user
|
|
|
|
[ -f "/var/airport/gameserver.pid" ] && kill $(cat "/var/airport/gameserver.pid")
|
|
[ -f "/var/airport/uwsgi.pid" ] && kill $(cat "/var/airport/uwsgi.pid")
|