9170d59796
git-svn-id: svn://svn.openwrt.org/openwrt/packages@36011 3c298f89-4303-0410-b956-a3cf2f4a3e73
9 lines
250 B
Bash
9 lines
250 B
Bash
#!/bin/sh
|
|
|
|
/etc/init.d/miniupnpd enabled && [ "$ACTION" = "ifup" ] && {
|
|
local iface
|
|
for iface in $(uci_get upnpd config internal_iface; uci_get upnpd config external_iface); do
|
|
[ "$INTERFACE" = "$iface" ] && /etc/init.d/miniupnpd restart
|
|
done
|
|
}
|