From ad92f970f4bf4a2a825bcf774cda119118754a23 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 18 Sep 2022 21:00:42 -0400 Subject: [PATCH] Set SELinux to permissive mode for troubleshooting purposes There seems to be issues with SELinux on the generated images at the moment. In order to be able to troubleshoot them, we will configure SELinux for permissive mode for now. --- root/etc/selinux/config | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 root/etc/selinux/config diff --git a/root/etc/selinux/config b/root/etc/selinux/config new file mode 100644 index 0000000..806cb52 --- /dev/null +++ b/root/etc/selinux/config @@ -0,0 +1,14 @@ + +# This file controls the state of SELinux on the system. +# SELINUX= can take one of these three values: +# enforcing - SELinux security policy is enforced. +# permissive - SELinux prints warnings instead of enforcing. +# disabled - No SELinux policy is loaded. +SELINUX=permissive +# SELINUXTYPE= can take one of these three values: +# targeted - Targeted processes are protected, +# minimum - Modification of targeted policy. Only selected processes are protected. +# mls - Multi Level Security protection. +SELINUXTYPE=targeted + +