9cb6f12ea8
* Fix initscript for https://bugzilla.redhat.com/show_bug.cgi%3Fid%3D247100 * Fix for two Windows machines behind the same NAT with the same number of l2tp connection attempts since boot [Shinichi Furuso] Changes in this patch: * use PKG_INSTALL:=1 * use standard config file names like in other major distributions * new patch to disable building pfc (which was not installed anyway), removes dependency to libpcap * include a commented sample config file * use INSTALL_CONF instead of INSTALL_DATA + chmod 0600 -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/packages@20276 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
277 B
Bash
19 lines
277 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
|
|
START=60
|
|
BIN=xl2tpd
|
|
DEFAULT=/etc/default/$BIN
|
|
RUN_D=/var/run
|
|
PID_F=$RUN_D/$BIN.pid
|
|
|
|
start() {
|
|
mkdir -p $RUN_D/$BIN
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
|
$BIN $OPTIONS
|
|
}
|
|
|
|
stop() {
|
|
[ -f $PID_F ] && kill $(cat $PID_F)
|
|
}
|