summaryrefslogtreecommitdiff
path: root/files/plugins/selinuxenforced
blob: e157e3dfe57878993f7b81bf6b56b82427cf0a1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/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