#!/bin/sh
#
# This script is executed when the IP layer goes down. It indicates that
# the connection is failing. The script will ensure that the modem has
# really terminated and then redial the system.
#
# All of the real work is performed by the second part script which I can
# fork off into the background so that this may terminate without locking
# the existing pppd process.
#
/etc/ppp/ip-down-part2 $1 $2 $3 $4 $5 &
exit 0
