mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:25:20 +02:00
34 lines
516 B
Plaintext
34 lines
516 B
Plaintext
|
#!/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
|
||
|
}
|
||
|
|