From 6772ab104f68ed7bbfcdfa41c0fb65e6e5968cf2 Mon Sep 17 00:00:00 2001
From: thepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Sun, 14 Mar 2010 21:42:56 +0000
Subject: /lib/network/ppp.sh fixes a problem with PPtP (and other PPP-based
 things) where PPtP + PPPoE will fail to work. This is because PPtP defaults
 to ppp0 and so does PPPoE, because /etc/init.d/ppp reinitializes the unit
 counter for each PPP-type connection (so you could have multiple PPtP over
 cable, for instance, but PPPoE + PPtP is a problem).

/etc/init.d/ppp automatically starts pptp session on boot., from #6720

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20221 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 package/pptp/files/pptp.init | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 package/pptp/files/pptp.init

(limited to 'package/pptp')

diff --git a/package/pptp/files/pptp.init b/package/pptp/files/pptp.init
new file mode 100644
index 000000000..024b8ceea
--- /dev/null
+++ b/package/pptp/files/pptp.init
@@ -0,0 +1,33 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+START=41
+STOP=30
+
+updown_pptp_interface () {
+	config_get proto "$1" proto
+	if [ "$proto" = "pptp" ]; then
+		if$2 "$1"	
+	fi
+}
+
+boot () {
+	start
+}
+
+start() {
+	config_load network
+	config_foreach updown_pptp_interface interface up
+}
+
+restart() {
+	config_load network
+	config_foreach updown_pptp_interface interface down
+	config_foreach updown_pptp_interface interface up
+}
+
+stop() {
+	config_load network
+	config_foreach updown_pptp_interface interface down
+}
+
-- 
cgit v1.2.3