#!/bin/sh # This script is called from /etc/ppp/ip-down.local by pppd once # a connection comes up. # # Parameters are: # $1 = interface-name # $2 = tty-device # $3 = speed # $4 = local-link-local-address # $5 = remote-link-local-address # $6 = ipparam # # Write a notice to syslog logger "ip-down.plusnet: starting" if [ "$6" = "plusnet" ]; then # Plusnet Connection deactivated # Restore original nameservers rm -f /etc/resolv.conf mv /etc/resolv.conf.pre-plusnet /etc/resolv.conf logger "ip-down.plusnet: original /etc/resolv.conf restored" else # Some other pppd connection deactivated logger "ip-down.plusnet: non-Plusnet connection, aborting" fi # Write a notice to syslog logger "ip-down.plusnet: done"