summaryrefslogtreecommitdiff
path: root/files/plugins/selinuxenforced
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-11-27 15:43:21 +0100
committermh <mh@immerda.ch>2012-11-27 15:43:21 +0100
commitd43c6ae0fcf45411524d093d21f5cb5c01f7c830 (patch)
treeabb46ad745799fec59b4982cda82a1137573b53a /files/plugins/selinuxenforced
parenta33995ad702c6203314d1b9b68000ae931a35dc4 (diff)
there are now official selinux plugins
Diffstat (limited to 'files/plugins/selinuxenforced')
-rwxr-xr-xfiles/plugins/selinuxenforced30
1 files changed, 0 insertions, 30 deletions
diff --git a/files/plugins/selinuxenforced b/files/plugins/selinuxenforced
deleted file mode 100755
index e157e3d..0000000
--- a/files/plugins/selinuxenforced
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# -*- sh -*-
-#
-# Plugin to monitor the status of selinux
-#
-# Contributed by admin(at)immerda.ch
-
-if [ "$1" = "autoconf" ]; then
- echo yes
- exit 0
-fi
-
-if [ "$1" = "config" ]; then
- echo 'graph_title enforced amount'
- echo 'graph_args --upper-limit 1 -l 0 '
- echo 'graph_vlabel Is the system selinux enforced?'
- echo 'graph_scale no\n';
- echo 'graph_category selinux'
- echo 'enforced.label IsEnforced'
- #echo 'enforced.draw AREA'
- echo 'enforced.draw LINE2'
-
- exit 0
-fi
-
-if [ -r /selinux/enforce ]; then
- echo -n "enforced.value " && cat /selinux/enforce
-else
- echo "enforced.value 0"
-fi