mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-11 14:59:41 +02:00
097635b79b
- sstrip cleanup from mjn3 - various patches from nico and others: http://openwrt.org/forum/viewtopic.php?t=368 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@145 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
315 B
Bash
19 lines
315 B
Bash
#!/bin/sh
|
|
|
|
case $1 in
|
|
start)
|
|
insmod ppp_async >/dev/null 2>&1
|
|
insmod ppp_mppe_mppc >/dev/null 2>&1
|
|
[ -d /var/run ] || mkdir -p /var/run
|
|
/usr/sbin/pptpd
|
|
;;
|
|
stop)
|
|
[ -f /var/run/pptpd.pid ] && kill $(cat /var/run/pptpd.pid) >/dev/null 2>&1
|
|
;;
|
|
*)
|
|
echo "usage: $0 (start|stop)"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|