You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
255 B
18 lines
255 B
![]()
19 years ago
|
#!/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
|