From c7efedf66a591e07f177d876399f9218a1b77794 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Wed, 4 Apr 2012 02:35:17 -0700 Subject: [PATCH] remove fairly useless, trivial plugin --- plugins/programmes/stats_apache2 | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 plugins/programmes/stats_apache2 diff --git a/plugins/programmes/stats_apache2 b/plugins/programmes/stats_apache2 deleted file mode 100755 index 432959a6..00000000 --- a/plugins/programmes/stats_apache2 +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# -# By InboX -# site: http://munin.kazylax.net/ -####################################### - -if [ "$1" = "config" ]; then - echo "graph_title Serveur apache2" - echo 'graph_category Programmes' - echo 'graph_args --base 1000 -l 0' - echo 'graph_vlabel Apache2' - echo 'graph_scale no' - echo "up.label Apache en ligne" - echo 'up.draw AREA' - echo "down.label Apache hors ligne" - echo 'down.draw AREA' - exit 0 -fi - -if [ ! -f "/var/run/apache2.pid" ]; -then -echo -n "down.value 0.6" -fi - -if [ -f "/var/run/apache2.pid" ]; -then -echo -n "up.value 1" -fi \ No newline at end of file