ppp-ipv6-up 329 B

12345678910111213
  1. #!/bin/sh
  2. #
  3. # This script is run by pppd when there's a successful ppp connection.
  4. #
  5. # Execute all scripts in /etc/ppp/ipv6-up.d/
  6. for ipup in /etc/ppp/ipv6-up.d/*.sh; do
  7. if [ -x $ipup ]; then
  8. # Parameters: interface-name tty-device speed local-link-local-address remote-link-local-address ipparam
  9. $ipup "$@"
  10. fi
  11. done