From a38d4dec9603d0a8b3c06118e40ae56697d2748c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Tue, 31 Jul 2007 20:42:44 +0000 Subject: [PATCH] * fixed bug in the debian init script that would make 'restart' fail. tnx to DGEAPerez for reporting this. --- webcit/debian/webcit.init | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 ;; *) -- 2.30.2