X-Git-Url: https://git.pld-linux.org/?a=blobdiff_plain;f=ppp%2Fip-down;h=72e0658229c876c49418df7f1c1a65a0cb4bfff9;hb=8903a3b15f08d759d06bb2b02e637e0baf7497bf;hp=3a8f13e2d05783eb19a0b1244bc7abd5a2718c41;hpb=763b88c2cdd6990d00999671677642c1e4e21df9;p=projects%2Frc-scripts.git diff --git a/ppp/ip-down b/ppp/ip-down index 3a8f13e2..72e06582 100755 --- a/ppp/ip-down +++ b/ppp/ip-down @@ -1,22 +1,21 @@ #!/bin/sh # -# $Id: ip-down,v 1.7 2002/03/19 18:18:06 misiek Exp $ # This file should not be modified # # This script is run by the pppd _after_ the link is brought down. # # This script is called with the following arguments: -# Arg Name Example -# $1 Interface name ppp0 -# $2 The tty ttyS1 -# $3 The link speed 38400 -# $4 Local IP number 12.34.56.78 -# $5 Peer IP number 12.34.56.99 -# $6 Optional ``ipparam'' value foo +# Arg Name Example +# $1 Interface name ppp0 +# $2 The tty ttyS1 +# $3 The link speed 38400 +# $4 Local IP number 12.34.56.78 +# $5 Peer IP number 12.34.56.99 +# $6 Optional ``ipparam'' value foo set +e -# The environment is cleared before executing this script +# The environment is cleared before executing this script # so the path must be reset PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin export PATH @@ -30,8 +29,8 @@ PPP_IPPARAM="$6" export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM . /etc/rc.d/init.d/functions -. /etc/sysconfig/network-scripts/functions.network -CONFIG="$PPP_IPPARAM" +. /lib/rc-scripts/functions.network +CONFIG="/etc/sysconfig/interfaces/ifcfg-$PPP_IPPARAM" source_config # as an additional convienince, $PPP_TTYNAME is set to the tty name, @@ -44,6 +43,6 @@ export PPP_TTYNAME run-parts /etc/sysconfig/interfaces/down.d/ppp -/etc/sysconfig/network-scripts/ifdown-post "${CONFIG}" +/lib/rc-scripts/ifdown-post "${CONFIG}" exit 0