ef4795f423
The selinux-autorelabel.service is configured with "StandardInput=tty", even though the script doing the relabeling is not interactive (only "fixfiles relabel" is interactive but it is not used in this service). This property should be removed and replaced by "StandardOutput=journal+console". See: - https://bugzilla.redhat.com/show_bug.cgi?id=1634661 - https://github.com/fedora-sysv/initscripts/pull/262
15 lines
301 B
Desktop File
15 lines
301 B
Desktop File
[Unit]
|
|
Description=Relabel all filesystems
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
After=sysinit.target
|
|
Before=shutdown.target
|
|
ConditionSecurity=selinux
|
|
|
|
[Service]
|
|
ExecStart=/usr/libexec/selinux/selinux-autorelabel
|
|
Type=oneshot
|
|
TimeoutSec=0
|
|
RemainAfterExit=yes
|
|
StandardOutput=journal+console
|