Files
2026-05-11 09:15:08 +02:00

8 lines
100 B
Bash

#!/usr/bin/env bash
if grep -i SELINUX=enforcing /etc/selinux/config; then
exit 0
else
exit 1
fi