mirror of https://github.com/hak5/openwrt.git
34 lines
516 B
Bash
34 lines
516 B
Bash
#!/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
|
|
}
|
|
|