diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 00:03:33 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 00:03:33 +0000 |
commit | f23d103cd518006d98353a922f94bc70f4e26c24 (patch) | |
tree | 066964090fce5a84306b9b2cc72118b1264321c2 /openwrt/package/pptpd/files/pptpd.init | |
parent | 57b3da14cd145a03f399b29b5e9eb15206f6cc79 (diff) |
Convert pptpd to new packaging style
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@942 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/pptpd/files/pptpd.init')
-rw-r--r-- | openwrt/package/pptpd/files/pptpd.init | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/openwrt/package/pptpd/files/pptpd.init b/openwrt/package/pptpd/files/pptpd.init new file mode 100644 index 000000000..79db864f9 --- /dev/null +++ b/openwrt/package/pptpd/files/pptpd.init @@ -0,0 +1,25 @@ +#!/bin/sh + +BIN=pptpd +DEFAULT=/etc/default/$BIN +RUN_D=/var/run +PID_F=$RUN_D/$BIN.pid +[ -f $DEFAULT ] && . $DEFAULT + +case $1 in + start) + mkdir -p $RUN_D + for m in arc4 sha1 shlc ppp_generic ppp_async ppp_mppe_mppc; do + insmod $m >/dev/null 2>&1 + done + $BIN $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? |