wok diff apache/receipt @ rev 19147

web server: stop running server in pre_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 23 11:34:06 2016 +0200 (2016-05-23)
parents f7a4afe63ba6
children f0a0b5091b4a
line diff
     1.1 --- a/apache/receipt	Wed Mar 09 09:21:24 2016 +0100
     1.2 +++ b/apache/receipt	Mon May 23 11:34:06 2016 +0200
     1.3 @@ -70,7 +70,9 @@
     1.4  # We stop the server by default in case of upgarde.
     1.5  pre_install()
     1.6  {
     1.7 -	[ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
     1.8 +	[ -z "$1" ] && for i in httpd lighttpd ngnix cherokee $PACKAGE ; do
     1.9 +		[ -f /etc/init.d/$i ] && /etc/init.d/$i stop
    1.10 +	done
    1.11  }
    1.12  
    1.13  post_install()