source: projects/initscripts/tags/initscripts-8.91.3/ppp/ip-down @ 1108

Revision 1108, 386 bytes checked in by daisuke, 14 years ago (diff)

import initscripts-8.90.6 from internal cvs repository

Line 
1#!/bin/bash
2# This file should not be modified -- make local changes to
3# /etc/ppp/ip-down.local instead
4
5PATH=/sbin:/usr/sbin:/bin:/usr/bin
6export PATH
7
8LOGDEVICE=$6
9REALDEVICE=$1
10
11/etc/ppp/ip-down.ipv6to4 ${LOGDEVICE}
12
13[ -x /etc/ppp/ip-down.local ] && /etc/ppp/ip-down.local "$@"
14
15/etc/sysconfig/network-scripts/ifdown-post --realdevice ${REALDEVICE} \
16    ifcfg-${LOGDEVICE}
17
18exit 0
Note: See TracBrowser for help on using the repository browser.