diff options
Diffstat (limited to 'testing/ppp/ipv6-down')
-rw-r--r-- | testing/ppp/ipv6-down | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/testing/ppp/ipv6-down b/testing/ppp/ipv6-down deleted file mode 100644 index d3b9e28b3..000000000 --- a/testing/ppp/ipv6-down +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# -# This script is run by pppd after the connection has ended. -# - -# Execute all scripts in /etc/ppp/ipv6-down.d/ -for ipdown in /etc/ppp/ipv6-down.d/*.sh; do - if [ -x $ipdown ]; then - # Parameters: interface-name tty-device speed local-link-local-address remote-link-local-address ipparam - $ipdown "$@" - fi -done |