8 lines
109 B
Bash
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
|