8 lines
171 B
Plaintext
8 lines
171 B
Plaintext
|
#!/bin/sh
|
||
|
# this should be run as the TP_USER user
|
||
|
|
||
|
cd ~/web
|
||
|
|
||
|
[ -f "$HOME/tps.pid" ] && kill $(cat "$HOME/tps.pid")
|
||
|
python manage.py stop_stream > "$HOME/teamplayer.log"
|