2010-07-22 05:09:09 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# this should be run as the TP_USER user
|
|
|
|
|
2010-08-16 00:04:54 +02:00
|
|
|
PYTHONPATH="/etc/teamplayer:$PYTHONPATH"
|
|
|
|
export PYTHONPATH
|
|
|
|
|
2010-07-22 05:09:09 +02:00
|
|
|
cd ~
|
2010-08-16 00:04:54 +02:00
|
|
|
hg serve -p 8000 --prefix /repo/ > /var/log/teamplayer/hgserve.log 2>&1 &
|
2010-07-22 05:09:09 +02:00
|
|
|
|
|
|
|
cd ~/web
|
|
|
|
|
2010-08-16 00:04:54 +02:00
|
|
|
if [ ! -f "/etc/firstboot" ] ; then
|
2010-07-22 05:09:09 +02:00
|
|
|
python manage.py syncdb
|
|
|
|
fi
|
|
|
|
|
|
|
|
# spin!
|
2010-08-16 00:04:54 +02:00
|
|
|
python manage.py spin --verbosity=2 $@ > "/var/log/teamplayer/teamplayer.log" 2>&1 &
|
|
|
|
echo $! > "TP_DB/tps.pid"
|