summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp/sample/auth-down
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/ppp/sample/auth-down')
-rw-r--r--mdk-stage1/ppp/sample/auth-down17
1 files changed, 17 insertions, 0 deletions
diff --git a/mdk-stage1/ppp/sample/auth-down b/mdk-stage1/ppp/sample/auth-down
new file mode 100644
index 000000000..edde65db1
--- /dev/null
+++ b/mdk-stage1/ppp/sample/auth-down
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# A program or script which is executed after the remote system
+# successfully authenticates itself. It is executed with the parameters
+# <interface-name> <peer-name> <user-name> <tty-device> <speed>
+#
+
+#
+# The environment is cleared before executing this script
+# so the path must be reset
+#
+PATH=/usr/sbin:/sbin:/usr/bin:/bin
+export PATH
+
+echo auth-down `date +'%y/%m/%d %T'` $* >> /var/log/pppstats
+
+# last line