X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=blobdiff_plain;f=src%2Finitscripts%2Finit.d%2Fapache;h=5405d773e85343276e622941b2d1d63a1a38d259;hp=4c73a7fd7edb77a161d309250136819894794060;hb=75474c3c493c3f2f4a4ab793910557fffc4182d3;hpb=1dc44471365cccef7ab2b3ec766c0d0c26f86475 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 ;;