Fix pid writing with olsrd (#1480)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6609 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-03-18 17:36:54 +00:00
parent 10a646eccb
commit aa668fd38c

View File

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