mirror of
https://github.com/systemd/systemd.git
synced 2025-01-24 06:04:05 +03:00
1775872679
Follow-up for #27936 Let's also update a bunch of static unit files, matching what we just did for the generators.
21 lines
531 B
Desktop File
21 lines
531 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
|
|
StandardOutput=journal+console
|
|
|
|
[Install]
|
|
WantedBy=basic.target
|