From 75474c3c493c3f2f4a4ab793910557fffc4182d3 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Mon, 6 Jan 2014 08:53:30 +0100 Subject: [PATCH] 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. --- src/initscripts/init.d/apache | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/initscripts/init.d/apache b/src/initscripts/init.d/apache index 4c73a7fd7..5405d773e 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 ;; -- 2.39.2