mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 07:35:19 +02:00
00dd3f5de8
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2796 3c298f89-4303-0410-b956-a3cf2f4a3e73
18 lines
255 B
Bash
Executable File
18 lines
255 B
Bash
Executable File
#!/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
|