summaryrefslogtreecommitdiff
path: root/pkg/soledad
blob: 2e94c339981dd35d8d357728109969038614403a (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
#!/bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin


pidfile=/var/run/soledad.pid
rundir=/var/lib/soledad/
obj=leap.soledad.server.application
logfile=/var/log/soledad.log
https_port=2424
plain_port=65534
cert_path=/etc/leap/soledad-server.pem
privkey_path=/etc/leap/soledad-server.pem

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

test -r /etc/leap/ || exit 0

. /lib/lsb/init-functions


case "$1" in
    start)
        echo -n "Starting soledad: twistd"
        HOME="/var/lib/soledad/" \
          start-stop-daemon --start --quiet --exec /usr/local/bin/twistd -- \
                          --pidfile=$pidfile \
                          --logfile=$logfile \
                          web \
                          --wsgi=$obj \
                          --https=$https_port \
                          --certificate=$cert_path \
                          --privkey=$privkey_path \
                          --port=$plain_port
        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 /usr/local/bin/twistd soledad && exit 0 || exit $?
    ;;

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

exit 0