source: freewrt/package/pptpd/files/pptpd.init@ 428f140

freewrt_1_0 freewrt_2_0
Last change on this file since 428f140 was 583d755, checked in by Thorsten Glaser <tg@…>, 19 years ago
  • change the SYSV init system to add a target "autostart"
  • on system startup, call autostart instead of start
  • on autostart, check /etc/rc.conf for whether the service is enabled and act appropriately; fall through into start target
  • move some pre-startup checks into the start target
  • some whitespace cleanup, when it makes much sense (XXX when I get the person who wrote these scripts...)
  • optimise dropbear a little

ok and approved wbx@

git-svn-id: svn://www.freewrt.org/trunk/freewrt@191 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 403 bytes
Line 
1#!/bin/sh
2
3BIN=pptpd
4DEFAULT=/etc/default/$BIN
5RUN_D=/var/run
6PID_F=$RUN_D/$BIN.pid
7[ -f $DEFAULT ] && . $DEFAULT
8
9case $1 in
10autostart|start)
11 mkdir -p $RUN_D
12 for m in arc4 sha1 slhc crc-ccitt ppp_generic ppp_async ppp_mppe_mppc; do
13 insmod $m >/dev/null 2>&1
14 done
15 $BIN $OPTIONS
16 ;;
17 stop)
18 [ -f $PID_F ] && kill $(cat $PID_F)
19 ;;
20 *)
21 echo "usage: $0 (start|stop)"
22 exit 1
23esac
24
25exit $?
Note: See TracBrowser for help on using the repository browser.