diff options
Diffstat (limited to 'package/base-files/files/sbin/ifdown')
| -rwxr-xr-x | package/base-files/files/sbin/ifdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 883f8ec42..8de414d8b 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -22,8 +22,8 @@ config_get proto "$cfg" proto  [ -z "$proto" ] && { echo "interface not found."; exit; }  config_get iface "$cfg" device -[ "static" = "$proto" ] && { -	env -i ACTION="ifdown" INTERFACE="$cfg" DEVICE="$iface" PROTO=static /sbin/hotplug-call "iface" & +[ "static" = "$proto" -o "none" = "$proto" ] && { +	env -i ACTION="ifdown" INTERFACE="$cfg" DEVICE="$iface" PROTO="$proto" /sbin/hotplug-call "iface"  }  # call interface stop handler | 
