summaryrefslogtreecommitdiff
path: root/scripts/client/sydra-launch.sh
blob: 0bd872ca663abb33b6b9e40bc77a8a41fe0c9fac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ -e "~/e14/supervisord.pid" ]; then
  kill `cat ~/e14/supervisord.pid`
fi
sleep 1
mkdir -p ~/e14/logs
cd ~/e14/
supervisord -c supervisord.conf
firefox http://localhost:9001/ &

exit 0