diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-04-05 02:09:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-04-05 02:09:22 +0000 |
commit | ee27e41337497f69d27cd689fe19ba2c89e95f79 (patch) | |
tree | 302d5239acd2ed8e10f5310599a381bb22f193e0 /openwrt/package/ez-ipupdate/files | |
parent | e4b534024d6dc903ef48628dda1203d0d7c5bfcb (diff) | |
download | mtk-20170518-ee27e41337497f69d27cd689fe19ba2c89e95f79.zip mtk-20170518-ee27e41337497f69d27cd689fe19ba2c89e95f79.tar.gz mtk-20170518-ee27e41337497f69d27cd689fe19ba2c89e95f79.tar.bz2 |
large init script cleanup and merge of whiterussian changes, new dnsmasq config handling
SVN-Revision: 3588
Diffstat (limited to 'openwrt/package/ez-ipupdate/files')
-rw-r--r-- | openwrt/package/ez-ipupdate/files/ez-ipupdate.hotplug | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openwrt/package/ez-ipupdate/files/ez-ipupdate.hotplug b/openwrt/package/ez-ipupdate/files/ez-ipupdate.hotplug index eb7ab32..c305458 100644 --- a/openwrt/package/ez-ipupdate/files/ez-ipupdate.hotplug +++ b/openwrt/package/ez-ipupdate/files/ez-ipupdate.hotplug @@ -1,10 +1,10 @@ -. /etc/functions.sh NAME=ez-ipupdate CONFIG=/etc/$NAME.conf COMMAND=/usr/sbin/$NAME + [ "$ACTION" = "ifup" -a "$INTERFACE" = "wan" ] && { [ -x $COMMAND ] && [ -r $CONFIG ] && { - IFNAME=$(nvram get ${INTERFACE}_ifname) - $COMMAND -c $CONFIG -i $IFNAME 2>&1 | logger -t $NAME + eval "ifname=\"\${${INTERFACE}_ifname}\"" + $COMMAND -c $CONFIG -i $ifname 2>&1 | logger -t $NAME } & } |