diff options
Diffstat (limited to 'package/ppp/files/etc')
-rwxr-xr-x | package/ppp/files/etc/ppp/ip-up | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/ppp/files/etc/ppp/ip-up b/package/ppp/files/etc/ppp/ip-up index 4b44b25d0..389592953 100755 --- a/package/ppp/files/etc/ppp/ip-up +++ b/package/ppp/files/etc/ppp/ip-up @@ -1,5 +1,8 @@ #!/bin/sh + . /etc/functions.sh +. /lib/network/config.sh + PPP_IFACE="$1" PPP_TTY="$2" PPP_SPEED="$3" @@ -14,8 +17,9 @@ export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM uci_set_state network "$PPP_IPPARAM" gateway "$PPP_REMOTE" local dns="$DNS1${DNS2:+ $DNS2}" - [ -n "$dns" ] && uci_set_state network "$PPP_IPPARAM" dns "$dns" + [ -n "$dns" ] && add_dns "$PPP_IPPARAM" $dns } + [ -z "$PPP_IPPARAM" ] || env -i ACTION="ifup" INTERFACE="$PPP_IPPARAM" DEVICE="$PPP_IFACE" PROTO=ppp /sbin/hotplug-call "iface" [ -d /etc/ppp/ip-up.d ] && { |