summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2014-12-16 13:31:05 -0400
committerKali Kaneko <kali@leap.se>2014-12-16 13:31:05 -0400
commit23cbe0959ecee11d90cdea2545607fedc66a666c (patch)
treeaa19857941edc16ee415d7bee7fc52d44823d7c8
parent03ed4194cd0bde3159c3c8e3989f29f4a612b550 (diff)
make init file a symlinkdebian/platform-0.6
l---------[-rw-r--r--]debian/soledad-server.init80
1 files changed, 1 insertions, 79 deletions
diff --git a/debian/soledad-server.init b/debian/soledad-server.init
index 58c10c3a..6448df05 100644..120000
--- a/debian/soledad-server.init
+++ b/debian/soledad-server.init
@@ -1,79 +1 @@
-#!/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
-RUNDIR=/var/lib/soledad/
-OBJ=leap.soledad.server.application
-LOGFILE=/var/log/soledad.log
-HTTPS_PORT=2424
-CERT_PATH=/etc/leap/soledad-server.pem
-PRIVKEY_PATH=/etc/leap/soledad-server.pem
-TWISTD_PATH=/usr/bin/twistd
-HOME=/var/lib/soledad/
-
-[ -r /etc/default/soledad ] && . /etc/default/soledad
-
-test -r /etc/leap/ || exit 0
-
-. /lib/lsb/init-functions
-
-is_true() {
- if [ "x$1" = "xtrue" -o "x$1" = "xyes" -o "x$1" = "x0" ] ; then
- return 0
- else
- return 1
- fi
-}
-
-case "$1" in
- start)
- if is_true "$START" ; then
- echo -n "Starting soledad: twistd"
- start-stop-daemon --start --quiet --exec $TWISTD_PATH -- \
- --pidfile=$PIDFILE \
- --logfile=$LOGFILE \
- web \
- --wsgi=$OBJ \
- --port=ssl:$HTTPS_PORT:privateKey=$PRIVKEY_PATH:certKey=$CERT_PATH
- echo "."
- else
- echo ""
- echo "soledad-server is not configured to start, please edit /etc/default/soledad to enable"
- fi
- ;;
- 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
+../server/pkg/soledad-server \ No newline at end of file