Root/package/ppp/files/etc/ppp/ip-down

1#!/bin/sh
2. /etc/functions.sh
3PPP_IFACE="$1"
4PPP_TTY="$2"
5PPP_SPEED="$3"
6PPP_LOCAL="$4"
7PPP_REMOTE="$5"
8PPP_IPPARAM="$(echo $6 | sed 's/\./_/g')"
9export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM
10[ -z "$PPP_IPPARAM" ] || {
11    env -i ACTION="ifdown" INTERFACE="$PPP_IPPARAM" DEVICE="$PPP_IFACE" PROTO=ppp /sbin/hotplug-call "iface"
12
13    # remove the interface's network state
14    uci_revert_state network "$PPP_IPPARAM"
15}
16
17[ -d /etc/ppp/ip-down.d ] && {
18    for SCRIPT in /etc/ppp/ip-down.d/*
19    do
20        [ -x "$SCRIPT" ] && "$SCRIPT" "$@"
21    done
22}
23

Archive Download this file



interactive