8 lines
229 B
Bash
8 lines
229 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ "$USEPEERDNS" = "1" -a -f /etc/ppp/resolv.conf ]; then
|
||
|
[ -e /etc/resolv.conf ] && mv /etc/resolv.conf /etc/resolv.conf.backup.${IFNAME}
|
||
|
mv /etc/ppp/resolv.conf /etc/resolv.conf
|
||
|
chmod 644 /etc/resolv.conf
|
||
|
fi
|