summaryrefslogtreecommitdiff
path: root/core/ppp/ipv6-down
diff options
context:
space:
mode:
Diffstat (limited to 'core/ppp/ipv6-down')
-rw-r--r--core/ppp/ipv6-down12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/ppp/ipv6-down b/core/ppp/ipv6-down
new file mode 100644
index 000000000..d3b9e28b3
--- /dev/null
+++ b/core/ppp/ipv6-down
@@ -0,0 +1,12 @@
+#!/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