#! /bin/sh # Example of simple /etc/ppp/ip-up script (see 'man pppd') # Note: No env is passed, so use full paths. # This speeds up ppp autologin using /sbin/request-route by killing # its sleep timer once IP is up, so request-route can finish. LOCK=/var/run/request-route.pid if [ -f $LOCK ] then sleepid=`cat $LOCK` /bin/kill -9 $sleepid fi # Add timeserver clock sync here if desired.