1
1
Files
zyxel-vmg8825_b50b-cfw/package/network/utils/rp-ppp/files/pppoe-server.init
T
2026-04-17 18:33:03 +02:00

16 lines
248 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=50
DEFAULT=/etc/default/pppoe-server
start() {
[ -f $DEFAULT ] && . $DEFAULT
service_start /usr/sbin/pppoe-server $OPTIONS
}
stop() {
service_stop /usr/sbin/pppoe-server
}