call interface stop handler on ifdown
SVN-Revision: 5432
This commit is contained in:
parent
68334478aa
commit
ab80113a68
1 changed files with 3 additions and 0 deletions
|
@ -12,6 +12,9 @@ debug "### ifdown $cfg ###"
|
|||
config_get proto "$cfg" proto
|
||||
[ -z "$proto" ] && { echo "interface not found."; exit; }
|
||||
|
||||
# call interface stop handler
|
||||
( type "stop_interface_$proto" ) >/dev/null 2>/dev/null && eval "stop_interface_$proto '$cfg'"
|
||||
|
||||
# make sure all locks are removed
|
||||
for lock in "/var/lock/dhcp-$iface" "/var/lock/ppp-$iface"; do
|
||||
[ -f "$lock" ] && {
|
||||
|
|
Loading…
Reference in a new issue