Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
21 lines
551 B
Bash
Executable File
21 lines
551 B
Bash
Executable File
#!/bin/sh
|
|
PPP_IPPARAM="$6"
|
|
|
|
. /lib/netifd/netifd-proto.sh
|
|
proto_init_update "$IFNAME" 1 1
|
|
proto_set_keep 1
|
|
[ -n "$PPP_IPPARAM" ] && {
|
|
[ -n "$IPLOCAL" ] && proto_add_ipv4_address "$IPLOCAL" 32 "" "${IPREMOTE:-2.2.2.2}"
|
|
[ -n "$IPREMOTE" ] && proto_add_ipv4_route 0.0.0.0 0 "$IPREMOTE"
|
|
[ -n "$DNS1" ] && proto_add_dns_server "$DNS1"
|
|
[ -n "$DNS2" -a "$DNS1" != "$DNS2" ] && proto_add_dns_server "$DNS2"
|
|
}
|
|
proto_send_update "$PPP_IPPARAM"
|
|
|
|
[ -d /etc/ppp/ip-up.d ] && {
|
|
for SCRIPT in /etc/ppp/ip-up.d/*
|
|
do
|
|
[ -x "$SCRIPT" ] && "$SCRIPT" "$@"
|
|
done
|
|
}
|