mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
f6af2976aa
Let's ship a .autorelabel file so we can get rid of firstboot-autorelabel.service.
20 lines
474 B
Desktop File
20 lines
474 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Relabel all filesystems
|
|
DefaultDependencies=no
|
|
Requires=local-fs.target
|
|
After=local-fs.target
|
|
Conflicts=shutdown.target
|
|
Before=shutdown.target basic.target
|
|
ConditionSecurity=selinux
|
|
ConditionPathExists=|/.autorelabel
|
|
SuccessAction=reboot
|
|
|
|
[Service]
|
|
ExecStart=sh -xec 'echo 0 >/sys/fs/selinux/enforce; fixfiles -f -F relabel; rm /.autorelabel;'
|
|
Type=oneshot
|
|
TimeoutSec=infinity
|
|
|
|
[Install]
|
|
WantedBy=basic.target
|