From: Arne Fitzenreiter Date: Mon, 6 Jan 2014 07:53:30 +0000 (+0100) Subject: apache: Add message for generating host certs. X-Git-Tag: v2.15-beta1~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75474c3c493c3f2f4a4ab793910557fffc4182d3;p=people%2Fms%2Fipfire-2.x.git apache: Add message for generating host certs. On rpi this need 3.5 minutes so it is better to show that this need a while. --- diff --git a/src/initscripts/init.d/apache b/src/initscripts/init.d/apache index 4c73a7fd7e..5405d773e8 100644 --- a/src/initscripts/init.d/apache +++ b/src/initscripts/init.d/apache @@ -9,12 +9,14 @@ case "$1" in start) - boot_mesg "Starting Apache daemon..." if [ -f /etc/httpd/server.key -a -f /etc/httpd/server.crt -a -f /etc/httpd/server.csr ]; then /usr/local/bin/httpscert read >/dev/null 2>&1 else + boot_mesg "Generating https host certificate... this may take some minutes..." /usr/local/bin/httpscert new >/dev/null 2>&1 + evaluate_retval fi + boot_mesg "Starting Apache daemon..." /usr/sbin/apachectl -k start evaluate_retval ;;