diff options
author | Micah Anderson <micah@riseup.net> | 2013-08-14 11:15:10 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-08-14 11:15:10 -0400 |
commit | b479c6e5fe622ac48a7aaa442e3f767c3446a70c (patch) | |
tree | 0271898e89b8e021766c51e6ae3fba8496e62f01 /debian | |
parent | aa60792075355dc245209baed20aefb9d9b66819 (diff) |
add is_true() function to initscript
test that $START is enabled before trying to start, if it is not, don't start
Diffstat (limited to 'debian')
-rw-r--r-- | debian/soledad-server.init | 41 |
1 files changed, 26 insertions, 15 deletions
diff --git a/debian/soledad-server.init b/debian/soledad-server.init index d8df7c5d..1c3f1f71 100644 --- a/debian/soledad-server.init +++ b/debian/soledad-server.init @@ -26,43 +26,54 @@ 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) - 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 "." - ;; - + 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 |