summaryrefslogtreecommitdiff
path: root/server/pkg/soledad-server
blob: d9dab040ebca6ca462785ef3eccc3502390f66b2 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/sh
### BEGIN INIT INFO
# Provides:          soledad
# Required-Start:    $network $named $remote_fs $syslog $time
# Required-Stop:     $network $named $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start soledad daemon at boot time
# Description:       Synchronization of locally encrypted data among devices
### END INIT INFO

PATH=/sbin:/bin:/usr/sbin:/usr/bin
PIDFILE=/var/run/soledad.pid
OBJ=leap.soledad.server.application.wsgi_application
HTTPS_PORT=2424
CONFDIR=/etc/soledad
CERT_PATH="${CONFDIR}/soledad-server.pem"
PRIVKEY_PATH="${CONFDIR}/soledad-server.key"
TWISTD_PATH=/usr/bin/twistd
HOME=/var/lib/soledad/
SSL_METHOD=SSLv23_METHOD
USER=soledad
GROUP=soledad

[ -r /etc/default/soledad ] && . /etc/default/soledad

test -r ${CONFDIR} || exit 0

. /lib/lsb/init-functions


case "${1}" in
    start)
        echo -n "Starting soledad: twistd"
          start-stop-daemon --start --quiet \
            --exec ${TWISTD_PATH} -- \
            --uid=${USER} --gid=${GROUP} \
            --pidfile=${PIDFILE} \
	    --syslog \
	    --prefix=soledad-server \
            web \
            --wsgi=${OBJ} \
            --port=ssl:${HTTPS_PORT}:privateKey=${PRIVKEY_PATH}:certKey=${CERT_PATH}:sslmethod=${SSL_METHOD}
        echo "."
    ;;

    stop)
        echo -n "Stopping soledad: twistd"
        start-stop-daemon --stop --quiet  \
            --pidfile ${PIDFILE}
        echo "."
    ;;

    restart)
        ${0} stop
        ${0} start
    ;;

    force-reload)
        ${0} restart
    ;;

    status)
        status_of_proc -p ${PIDFILE} ${TWISTD_PATH} soledad && exit 0 || exit ${?}
    ;;

    *)
        echo "Usage: /etc/init.d/soledad {start|stop|restart|force-reload|status}" >&2
        exit 1
    ;;
esac

exit 0