Browse Source

netifd: fix stopping netifd + interfaces

stop() is overwritten by rc.common, so implement stop_service instead.
While at it, remove the now unnecessary restart() override

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau 9 years ago
parent
commit
942ac18c8a
1 changed files with 3 additions and 10 deletions
  1. 3 10
      package/network/config/netifd/files/etc/init.d/network

+ 3 - 10
package/network/config/netifd/files/etc/init.d/network

@@ -31,9 +31,10 @@ reload_service() {
 	/sbin/wifi reload_legacy
 }
 
-stop() {
+stop_service() {
 	/sbin/wifi down
-	procd_kill network ''
+	ifdown -a
+	sleep 1
 }
 
 service_running() {
@@ -137,14 +138,6 @@ service_triggers()
 	procd_close_validate
 }
 
-restart() {
-	ifdown -a
-	sleep 1
-	trap '' TERM
-	stop "$@"
-	start "$@"
-}
-
 shutdown() {
 	ifdown -a
 	sleep 1