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

8 lines
109 B
Bash

#!/usr/bin/env bash
if grubby --info=ALL | grep -Pq '(selinux|enforcing)=0\b'; then
exit 1
else
exit 0
fi