void-packages/srcpkgs/ppp/files/ipv6-up

13 lines
329 B
Text
Raw Normal View History

2014-02-18 07:38:53 +00:00
#!/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