aports/testing/pptpd/pptpd.initd
Danilo Godec ff73676914 testing/pptpd: new aport
pptpd is a linux PPTP server
2011-08-10 12:46:50 +00:00

21 lines
377 B
Plaintext

#!/sbin/runscript
depend() {
need net
}
start() {
ebegin "Starting pptpd"
start-stop-daemon --start --quiet --exec /usr/sbin/pptpd -- ${PPTPD_OPTS}
eend $?
}
stop() {
ebegin "Stopping pptpd"
start-stop-daemon --stop --quiet --pidfile /var/run/pptpd.pid
result=$?
start-stop-daemon --stop --quiet --exec /usr/sbin/pptpctrl
result=$(( $result + $? ))
eend $result
}