diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /core/ppp/ip-down |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'core/ppp/ip-down')
-rw-r--r-- | core/ppp/ip-down | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/ppp/ip-down b/core/ppp/ip-down new file mode 100644 index 000000000..301f3ab9b --- /dev/null +++ b/core/ppp/ip-down @@ -0,0 +1,12 @@ +#!/bin/sh +# +# This script is run by pppd after the connection has ended. +# + +# Execute all scripts in /etc/ppp/ip-up.d/ +for ipdown in /etc/ppp/ip-down.d/*.sh; do + if [ -x $ipdown ]; then + # Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam + $ipdown "$@" + fi +done |