netifd: shut down all interfaces before restarting netifd

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31032 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2012-03-19 21:09:51 +00:00
parent c1339030e1
commit c133369698
1 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,13 @@ start() {
sleep 1
}
restart() {
ifdown -a
sleep 1
stop
start
}
stop() {
service_stop /sbin/netifd
}