mirror of https://github.com/hak5/openwrt.git
pptp: utilize coldplug_interface_pptp() to automatically launch pptp instances on boot
SVN-Revision: 21390lede-17.01
parent
6a3cbba92e
commit
dcbb5a19e7
|
@ -1,33 +0,0 @@
|
||||||
#!/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
|
|
||||||
}
|
|
||||||
|
|
|
@ -6,6 +6,10 @@ stop_interface_pptp() {
|
||||||
stop_interface_ppp "$1"
|
stop_interface_ppp "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
coldplug_interface_pptp() {
|
||||||
|
setup_interface_pptp "pptp-$1" "$1"
|
||||||
|
}
|
||||||
|
|
||||||
setup_interface_pptp() {
|
setup_interface_pptp() {
|
||||||
local config="$2"
|
local config="$2"
|
||||||
local ifname
|
local ifname
|
||||||
|
|
Loading…
Reference in New Issue