packages/net/olsrd/files/olsrd.init
florian aa668fd38c Fix pid writing with olsrd (#1480)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@6609 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-03-18 17:36:54 +00:00

24 lines
340 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
BIN=olsrd
DEFAULT=/etc/default/olsrd
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
start() {
[ -f $DEFAULT ] && . $DEFAULT
$BIN -nofork $OPTIONS &
# write pid file (but strip out own pid ($$))
mkdir -p $RUN_D
PID=`pidof $BIN`
echo ${PID%$$} > $PID_F
}
stop() {
killall olsrd
}