Hello, I have been using Combustion to provision MicroOS from the selfinstall.iso and have the lines below added to my script inside my mounted combustion file. I assumed this would work so didn’t do a deep dive into the documentation, and it does appear to: after the first boot from Combustion, if I immediately restart, the autorelabel happens. I would then manually run transactional-update run rm /.autorelabel and reboot a second time. After this second reboot, sestatus shows the correct output (enforcing, targeted) and I proceed on my merry way.
However, I saw that in the official documentation they recommend putting .autorelabel inside /etc/selinux/ or (.autorelabel is unnecessary?) and just running transactional-update setup-selinux.
I started investigating my system more thoroughly after reading this documentation and found only two types of denial errors since December 2025…
16. 02/26/2026 17:48:58 bootctl system_u:system_r:snapper_sdbootutil_plugin_t:s0 0 dir rmdir system_u:object_r:dosfs_t:s0 denied 126
34. 04/17/2026 01:54:45 chattr system_u:system_r:snapper_sdbootutil_plugin_t:s0 0 capability linux_immutable system_u:system_r:snapper_sdbootutil_plugin_t:s0 denied 179
I’m wondering if this is a symptom of the way I’ve been setting up selinux.
Is the .autorelabel process even necessary when using combustion with the selfinstall.iso? What are the correct steps of configuring selinux from the selfinstall.iso?
The original selinux lines in my script…
echo ">>> STARTING SELINUX PROVISION..."
mkdir -p /etc/selinux
cat <<EOF > /etc/selinux/config
SELINUX=enforcing
SELINUXTYPE=targeted
EOF
echo ">>> SCHEDULING FILESYSTEM RELABEL..."
touch /.autorelabel
I’m assuming i’d update this to the following and then run transactional-update setup-selinux. Is doing any of this necessary? Should i just be running transactional-update setup-selinux right after i boot and removing any combustion selinux configuration?
echo ">>> STARTING SELINUX PROVISION..."
mkdir -p /etc/selinux
cat <<EOF > /etc/selinux/config
SELINUX=enforcing
SELINUXTYPE=targeted
EOF
echo ">>> SCHEDULING FILESYSTEM RELABEL..."
echo "-F" > /etc/selinux/.autorelabel
here is the link to documentation: Portal:MicroOS/SELinux - openSUSE Wiki