From 9598f5141ea75ffa72a3c7c85639c6f296020ef1 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 20 Oct 2012 01:22:20 -0700 Subject: Sat Oct 20 01:22:19 PDT 2012 --- core/ppp/ipv6-up | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 core/ppp/ipv6-up (limited to 'core/ppp/ipv6-up') diff --git a/core/ppp/ipv6-up b/core/ppp/ipv6-up new file mode 100644 index 000000000..b294aafdc --- /dev/null +++ b/core/ppp/ipv6-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/ipv6-up.d/ +for ipup in /etc/ppp/ipv6-up.d/*.sh; do + if [ -x $ipup ]; then + # Parameters: interface-name tty-device speed local-link-local-address remote-link-local-address ipparam + $ipup "$@" + fi +done -- cgit v1.2.3-54-g00ecf