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 | c27332b1e82ebc71a818c069b6a903e4425d62bd (patch) | |
tree | 92ae4f2e901f0bc9b14240fa3e955bdf4ef7623c /package/pptpd/files/pptpd.init | |
parent | 1827dd39e4ef9f2fdf6594029bf1d920c75ede5b (diff) |
Convert pptpd to new packaging style
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@942 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/pptpd/files/pptpd.init')
-rw-r--r-- | package/pptpd/files/pptpd.init | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/pptpd/files/pptpd.init b/package/pptpd/files/pptpd.init new file mode 100644 index 0000000000..79db864f98 --- /dev/null +++ b/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 $? |