forked from nekrut/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgalaxy.debian-init
55 lines (45 loc) · 1.23 KB
/
galaxy.debian-init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
# Author: James Casbon, 2009
### BEGIN INIT INFO
# Provides: galaxy
# Required-Start: $network $local_fs $mysql
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Galaxy
### END INIT INFO
. /lib/lsb/init-functions
USER="galaxy"
GROUP="nogroup"
DIR="/home/galaxy/galaxy_dist/"
PYTHON="/usr/bin/python"
OPTS="./scripts/paster.py serve --log-file /home/galaxy/galaxy.log config/galaxy.ini"
PIDFILE="/var/run/galaxy.pid"
case "${1:-''}" in
'start')
log_daemon_msg "Starting Galaxy"
if start-stop-daemon --chuid $USER --group $GROUP --start --make-pidfile \
--pidfile $PIDFILE --background --chdir $DIR --exec $PYTHON -- $OPTS; then
log_end_msg 0
else
log_end_msg 1
fi
;;
'stop')
log_daemon_msg "Stopping Galaxy"
if start-stop-daemon --stop --pidfile $PIDFILE; then
log_end_msg 0
else
log_end_msg 1
fi
;;
'restart')
# restart commands here
$0 stop
$0 start
;;
*) # no parameter specified
echo "Usage: $SELF start|stop|restart|reload|force-reload|status"
exit 1
;;
esac