2010-07-22 05:09:09 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-08-16 00:04:54 +02:00
|
|
|
if [ ! -f /etc/firstboot ] ; then
|
|
|
|
echo "Creating TeamPlayer database ..."
|
|
|
|
createuser -U postgres -D -S -R teamplayer
|
|
|
|
createdb -U postgres teamplayer
|
|
|
|
touch /var/log/teamplayer/teamplayer.log
|
|
|
|
chown TP_USER:TP_USER /var/log/teamplayer/teamplayer.log
|
|
|
|
fi
|
|
|
|
|
2010-07-22 05:09:09 +02:00
|
|
|
su -c "TP_HOME/bin/start-teamplayer" TP_USER
|
2010-08-16 00:04:54 +02:00
|
|
|
tailf /var/log/teamplayer/teamplayer.log > /dev/tty7 &
|
2010-07-22 05:09:09 +02:00
|
|
|
|
2010-08-16 00:04:54 +02:00
|
|
|
touch /etc/firstboot
|