diff options
author | James Meyer <james.meyer@operamail.com> | 2014-02-16 23:58:36 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2014-02-19 19:03:04 (GMT) |
commit | e2e6940857c635df49af42aced1e8a2fe293f665 (patch) | |
tree | 0613bcd7a821bfa860b4ebeecd19e0a0ef63f6c1 /abs/core/ppp/ipv6-up | |
parent | 782a0571b32b84b46cac58f2561ac8ab4672decc (diff) | |
download | linhes_pkgbuild-e2e6940857c635df49af42aced1e8a2fe293f665.zip linhes_pkgbuild-e2e6940857c635df49af42aced1e8a2fe293f665.tar.gz linhes_pkgbuild-e2e6940857c635df49af42aced1e8a2fe293f665.tar.bz2 |
ppp:
update binary path to /usr/bin
refs #961
Diffstat (limited to 'abs/core/ppp/ipv6-up')
-rw-r--r-- | abs/core/ppp/ipv6-up | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/abs/core/ppp/ipv6-up b/abs/core/ppp/ipv6-up new file mode 100644 index 0000000..b294aaf --- /dev/null +++ b/abs/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 |