diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-04-15 07:23:28 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-04-15 07:23:28 +0000 |
commit | 5f4b17b53f67c499b51b0178eb3d9e1dbaeda4bb (patch) | |
tree | 9def464c243af47f72eca9513afa37db7784e2cf | |
parent | 6d47d3ae113d075caa641852409972386aa6ebd7 (diff) | |
download | upstream-5f4b17b53f67c499b51b0178eb3d9e1dbaeda4bb.tar.gz upstream-5f4b17b53f67c499b51b0178eb3d9e1dbaeda4bb.tar.bz2 upstream-5f4b17b53f67c499b51b0178eb3d9e1dbaeda4bb.zip |
fix ifdown hotplug event (#1576)
SVN-Revision: 6950
-rwxr-xr-x | package/base-files/files/sbin/ifdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 8c36a25b48..5a98003b1d 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -21,7 +21,7 @@ config_get proto "$cfg" proto config_get iface "$cfg" device [ "$proto" = "static" ] && { - env -i ACTION="ifdown" INTERFACE="$config" DEVICE="$iface" PROTO=static /sbin/hotplug-call "iface" & + env -i ACTION="ifdown" INTERFACE="$cfg" DEVICE="$iface" PROTO=static /sbin/hotplug-call "iface" & } # call interface stop handler |