mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 09:13:09 +02:00
18 lines
255 B
Plaintext
18 lines
255 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
BINARY="/usr/sbin/collectd"
|
||
|
PIDFILE="/var/run/collectd.pid"
|
||
|
DATADIR="/var/lib/collectd"
|
||
|
|
||
|
[ -x "$BINARY" ] || exit 1;
|
||
|
|
||
|
if [ -e "$PIDFILE" ]
|
||
|
then
|
||
|
kill $(cat "$PIDFILE") 2>/dev/null
|
||
|
sleep 1
|
||
|
fi
|
||
|
|
||
|
[ -d "$DATADIR" ] || mkdir -p "$DATADIR";
|
||
|
|
||
|
$BINARY
|