summaryrefslogtreecommitdiff
path: root/scripts/client/sydra-launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/client/sydra-launch.sh')
-rwxr-xr-xscripts/client/sydra-launch.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/client/sydra-launch.sh b/scripts/client/sydra-launch.sh
new file mode 100755
index 0000000..0bd872c
--- /dev/null
+++ b/scripts/client/sydra-launch.sh
@@ -0,0 +1,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