diff options
author | Travis Kemen <thepeople@openwrt.org> | 2010-03-14 21:42:56 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2010-03-14 21:42:56 +0000 |
commit | 1223494f1d1e64461b47330eb3a52e8abfd84891 (patch) | |
tree | 301d9793c175d3d204e737135fed5f377df45efc /package/pptp/files | |
parent | 3a13fb95abd5ccd0f3373d255ef06572e9b11d8c (diff) | |
download | upstream-1223494f1d1e64461b47330eb3a52e8abfd84891.tar.gz upstream-1223494f1d1e64461b47330eb3a52e8abfd84891.tar.bz2 upstream-1223494f1d1e64461b47330eb3a52e8abfd84891.zip |
/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
SVN-Revision: 20221
Diffstat (limited to 'package/pptp/files')
-rw-r--r-- | package/pptp/files/pptp.init | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/package/pptp/files/pptp.init b/package/pptp/files/pptp.init new file mode 100644 index 0000000000..024b8ceea2 --- /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 +} + |