summaryrefslogtreecommitdiff
path: root/testing/ppp/ip-up
diff options
context:
space:
mode:
Diffstat (limited to 'testing/ppp/ip-up')
-rw-r--r--testing/ppp/ip-up12
1 files changed, 0 insertions, 12 deletions
diff --git a/testing/ppp/ip-up b/testing/ppp/ip-up
deleted file mode 100644
index 20473d73a..000000000
--- a/testing/ppp/ip-up
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-#
-# This script is run by pppd when there's a successful ppp connection.
-#
-
-# Execute all scripts in /etc/ppp/ip-up.d/
-for ipup in /etc/ppp/ip-up.d/*.sh; do
- if [ -x $ipup ]; then
- # Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam
- $ipup "$@"
- fi
-done