From: Wilfried Göesgens Date: Tue, 31 Jul 2007 20:42:44 +0000 (+0000) Subject: * fixed bug in the debian init script that would make 'restart' fail. tnx to DGEAPere... X-Git-Tag: v7.86~3193 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=a38d4dec9603d0a8b3c06118e40ae56697d2748c * fixed bug in the debian init script that would make 'restart' fail. tnx to DGEAPerez for reporting this. --- diff --git a/webcit/debian/webcit.init b/webcit/debian/webcit.init index 9f91937fa..4d73c83aa 100644 --- a/webcit/debian/webcit.init +++ b/webcit/debian/webcit.init @@ -150,7 +150,8 @@ case "$1" in if test -n "$MODERN"; then case "$?" in 0|1) - do_start + do_start $WEBCIT_HTTP_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT "" "$WEBCIT_APACHEFLAG" + do_start $WEBCIT_HTTPS_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT -s "$WEBCIT_APACHEFLAG" case "$?" in 0) log_end_msg 0 ;; 1) log_end_msg 1 ;; # Old process is still running @@ -163,7 +164,8 @@ case "$1" in ;; esac else - do_start + do_start $WEBCIT_HTTP_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT "" "$WEBCIT_APACHEFLAG" + do_start $WEBCIT_HTTPS_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT -s "$WEBCIT_APACHEFLAG" fi ;; *)