SOURCES: munin-node.init (NEW) - init script for munin client

baggins baggins at pld-linux.org
Wed Oct 5 20:25:01 CEST 2005


Author: baggins                      Date: Wed Oct  5 18:25:01 2005 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- init script for munin client

---- Files affected:
SOURCES:
   munin-node.init (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/munin-node.init
diff -u /dev/null SOURCES/munin-node.init:1.1
--- /dev/null	Wed Oct  5 20:25:01 2005
+++ SOURCES/munin-node.init	Wed Oct  5 20:24:56 2005
@@ -0,0 +1,56 @@
+#! /bin/sh
+#
+# munin-node	Control the Munin Node Server (formerly Linpro RRD client)
+#
+# chkconfig: 2345 90 10
+# description: munin node agents
+# processname: munin-node
+# config: /etc/munin/munin-node.conf
+# pidfile: /var/run/muin-node.pid
+
+# Source function library.
+. /etc/rc.d/init.d/functions
+
+RETVAL=0
+PROCNAME=munin-node
+
+mkdir -p /var/run/munin 2>/dev/null
+chown munin /var/run/munin
+
+# See how we were called.
+case "$1" in
+  start)
+	if [ ! -f /var/lock/subsys/munin-node ]; then
+		msg_starting "Munin Node"
+		daemon --fork --waitfortime 3 --waitforname munin-node munin-node
+		RETVAL=$?
+		[ $RETVAL -eq 0 ] && touch /var/lock/subsys/munin-node
+	else
+		msg_already_running "Munin Node"
+	fi
+	;;
+  stop)
+	if [ -f /var/lock/subsys/munin-node ]; then
+		msg_stopping "Munin Node"
+		killproc munin-node
+		RETVAL=$?
+		rm -f /var/lock/subsys/munin-node >/dev/null 2>/dev/null
+	else
+		msg_not_running "Munin Node"
+	fi
+	;;
+  status)
+	status munin-node
+	exit $?
+	;;
+  restart|reload)
+  	$0 stop
+	$0 start
+	exit $?
+	;;
+  *)
+	echo "Usage: $0 {start|stop|status|restart}"
+	exit 1
+esac
+
+exit $RETVAL
================================================================



More information about the pld-cvs-commit mailing list