#!/bin/sh # # PPP up hook script for resolvconf # # Reconfigures resolver to take into account # the appearance of the ppp interface. # # Tweaked by Simon McCartney to hard code a DNS Server into the mix # # Licensed under the GNU GPL. See /usr/share/common-licenses/GPL. # # History # June 2003: Written by Thomas Hood [ -x /sbin/resolvconf ] || exit 0 R="" # Prime with mccartney.ie as DNS server R="nameserver 207.210.218.33 " if [ "$DNS1" ] ; then R="${R}nameserver $DNS1 " fi if [ "$DNS2" ] ; then R="${R}nameserver $DNS2 " fi echo -n "$R" | /sbin/resolvconf -a "$PPP_IFACE"