#! /bin/sh

# connect: connect to the net

. init-script-lib
. daemon-lib

case $1 in 
	start)
	    fatal need filesystems 
	    need --not-crucial auto/named		

	    echo 2 > /proc/sys/net/ipv4/ip_dynaddr

	    modprobe ppp_generic
	    pppd remotename ntl call ntl demand &
	    ;;
	stop)
	    daemon-kill pppd
	    ;;
esac
