]> git.ipfire.org Git - thirdparty/dracut.git/blob - modules.d/98systemd/dracut-pre-udev.service
systemd: changes for new initrd services
[thirdparty/dracut.git] / modules.d / 98systemd / dracut-pre-udev.service
1 # This file is part of systemd.
2 #
3 # systemd is free software; you can redistribute it and/or modify it
4 # under the terms of the GNU Lesser General Public License as published by
5 # the Free Software Foundation; either version 2.1 of the License, or
6 # (at your option) any later version.
7
8 # See systemd.special(7) for details
9
10 [Unit]
11 Description=dracut pre-udev hook
12 Documentation=man:dracut-pre-udev.service(8)
13 DefaultDependencies=no
14 Before=systemd-udevd.service dracut-pre-trigger.service
15 After=dracut-cmdline.service
16 Wants=dracut-cmdline.service
17 ConditionPathExists=/etc/initrd-release
18 ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-udev
19 ConditionKernelCommandLine=|rd.break=pre-udev
20 ConditionKernelCommandLine=|rd.driver.blacklist
21 ConditionKernelCommandLine=|rd.driver.pre
22 ConditionKernelCommandLine=|rd.driver.post
23
24 [Service]
25 Type=oneshot
26 ExecStart=-/bin/dracut-pre-udev
27 StandardInput=null
28 StandardOutput=syslog
29 StandardError=syslog+console
30 KillMode=process
31 RemainAfterExit=yes
32
33 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
34 # terminates cleanly.
35 KillSignal=SIGHUP