packages/net/xl2tpd/files/xl2tpd.init
jow 0faa243f8e xl2tpd: remove module loading from init script
Remove module loading from xl2tpd init-script now that module gets loaded
properly during boot (since that was already fixed in #32562, this partly
reverts #32563)

Signed-off-by: Daniel Golle <dgolle@allnet.de>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@32574 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-07-01 12:59:32 +00:00

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)
}