]> git.ipfire.org Git - thirdparty/systemd.git/blob - units/systemd-sysext.service
btrfs-util: add assert to fix Coverity warning
[thirdparty/systemd.git] / units / systemd-sysext.service
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2 #
3 # This file is part of systemd.
4 #
5 # systemd is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as published by
7 # the Free Software Foundation; either version 2.1 of the License, or
8 # (at your option) any later version.
9
10 [Unit]
11 Description=Merge System Extension Images into /usr/ and /opt/
12 Documentation=man:systemd-sysext.service(8)
13
14 ConditionCapability=CAP_SYS_ADMIN
15 ConditionDirectoryNotEmpty=|/etc/extensions
16 ConditionDirectoryNotEmpty=|/run/extensions
17 ConditionDirectoryNotEmpty=|/var/lib/extensions
18 ConditionDirectoryNotEmpty=|/.extra/sysext
19
20 DefaultDependencies=no
21 After=local-fs.target
22 Before=sysinit.target systemd-tmpfiles-setup.service
23 Conflicts=shutdown.target initrd-switch-root.target
24 Before=shutdown.target initrd-switch-root.target
25
26 [Service]
27 Type=oneshot
28 RemainAfterExit=yes
29 ExecStart=systemd-sysext refresh
30 ExecReload=systemd-sysext refresh
31 ExecStop=systemd-sysext unmerge
32
33 [Install]
34 WantedBy=sysinit.target