Fix dnsmasq was not stopped at shutdown

This commit is contained in:
Arne Fitzenreiter
2008-08-26 13:19:48 +02:00
parent e4e4b3f975
commit 7be0be70bc
3 changed files with 5 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ srv/web/ipfire/cgi-bin/network.cgi
srv/web/ipfire/cgi-bin/system.cgi
etc/rc.d/init.d/checkfstab
etc/rc.d/init.d/connectd
etc/rc.d/init.d/network
etc/rc.d/init.d/networking/any
etc/rc.d/init.d/networking/red
etc/rc.d/rcsysinit.d/S19checkfstab

View File

@@ -106,7 +106,7 @@
* gd-2.0.33
* gdbm-1.8.3
* gettext-0.14.5
* git-1.5.6
* git-1.6.0
* glib-2.16.5
* glibc-2.3.6
* gmp-4.2

View File

@@ -117,6 +117,9 @@ case "${DO}" in
/etc/rc.d/init.d/networking/red stop
fi
fi
# Stopping dnsmasq if network all networks shutdown
[ "${ALL}" == "1" ] && /etc/rc.d/init.d/dnsmasq stop
;;
restart)