ppp-ipv6-down 329 B

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