summaryrefslogtreecommitdiffstats
path: root/pptpd/pptpd
blob: f21451059dcaec5b201c1c24b605f6a7b541e2e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
. /etc/sysconfig/rc
. $rc_functions

pidfile=/var/run/pptpd.pid

case "$1" in
    start)
        boot_mesg "Starting PPTPD Server..."
        loadproc /usr/sbin/pptpd -d;;

    stop)
        boot_mesg "Stopping PPTPD Server..."
        killproc /usr/sbin/pptpd
        ;;

    *)
        echo "Usage: $0 {start|stop}"
        exit 1
        ;;
esac