1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 22:29:50 +03:00
openwrt-xburst/openwrt/package/collectd/files/S80collectd
florian ed1ee89710 Added collectd, thanks to Florian Forster
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2796 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-12-29 15:09:37 +00:00

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