You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
399 B
Plaintext
13 lines
399 B
Plaintext
2 years ago
|
#!/bin/sh
|
||
|
# ppp.ip-up hook script for resolvconf
|
||
|
# Written by Roy Marples <roy@marples.name> under the BSD-2 license
|
||
|
|
||
|
[ -x /sbin/resolvconf ] || exit 0
|
||
|
|
||
|
if [ -n "$DNS1" -o -n "$DNS2" ]; then
|
||
|
conf="# Generated by ppp.ip-up for $PPP_IFACE\n"
|
||
|
[ -n "$DNS1" ] && conf="${conf}nameserver $DNS1\n"
|
||
|
[ -n "$DNS2" ] && conf="${conf}nameserver $DNS2\n"
|
||
|
printf "$conf" | /sbin/resolvconf -a "$PPP_IFACE"
|
||
|
fi
|