mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
a97d617f18
Follow-up forfa6f37c043
. Partially revertsd5ab23aa54
and3540ce8587
.
20 lines
500 B
Desktop File
20 lines
500 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Relabel all filesystems
|
|
DefaultDependencies=no
|
|
Requires=local-fs.target
|
|
Conflicts=shutdown.target
|
|
After=local-fs.target
|
|
Before=sysinit.target shutdown.target
|
|
ConditionSecurity=selinux
|
|
ConditionPathExists=|/.autorelabel
|
|
|
|
[Service]
|
|
ExecStart=sh -xec 'echo 0 >/sys/fs/selinux/enforce; fixfiles -f -F relabel; rm /.autorelabel; systemctl --force reboot'
|
|
Type=oneshot
|
|
TimeoutSec=infinity
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=basic.target
|