summaryrefslogtreecommitdiff
path: root/files/plugins/selinuxenforced
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-01-30 21:37:34 +0000
committermh <mh@immerda.ch>2008-01-30 21:37:34 +0000
commit9082862f719e3fe9eac5192114893e4281a6d1fb (patch)
treeb25e6395540683e05e2da32a9b507e296ff9bc87 /files/plugins/selinuxenforced
parent67c51ff64235a6e4df9acdd9d7aa7c28fa547354 (diff)
rearranged some stuff
Diffstat (limited to 'files/plugins/selinuxenforced')
-rwxr-xr-xfiles/plugins/selinuxenforced32
1 files changed, 32 insertions, 0 deletions
diff --git a/files/plugins/selinuxenforced b/files/plugins/selinuxenforced
new file mode 100755
index 0000000..2f88b9b
--- /dev/null
+++ b/files/plugins/selinuxenforced
@@ -0,0 +1,32 @@
+#!/bin/sh
+# -*- sh -*-
+#
+# Plugin to count the daily amount of Virii (qmailscan)
+#
+# Contributed by David Obando (david@cryptix.de) - 03.12.2005
+#
+
+# define the logfiles. when you rotate them at any other time than 00:00 you have to define two logfiles:
+#LOG0=/var/spool/qmailscan/quarantine.log
+#LOG1=/var/spool/qmailscan/quarantine.log.1
+
+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
+
+echo -n "enforced.value " && cat /selinux/enforce
+