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-up |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'core/ppp/ip-up')
-rw-r--r-- | core/ppp/ip-up | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/ppp/ip-up b/core/ppp/ip-up new file mode 100644 index 000000000..20473d73a --- /dev/null +++ b/core/ppp/ip-up @@ -0,0 +1,12 @@ +#!/bin/sh +# +# This script is run by pppd when there's a successful ppp connection. +# + +# Execute all scripts in /etc/ppp/ip-up.d/ +for ipup in /etc/ppp/ip-up.d/*.sh; do + if [ -x $ipup ]; then + # Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam + $ipup "$@" + fi +done |