]> git.ipfire.org Git - thirdparty/dracut.git/blob - modules.d/98systemd/dracut-pre-trigger.service
468249bb528da11edf3fee679cbc22711dff616c
[thirdparty/dracut.git] / modules.d / 98systemd / dracut-pre-trigger.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-trigger hook
12 Documentation=man:dracut-pre-trigger.service(8)
13 DefaultDependencies=no
14 Before=systemd-udev-trigger.service dracut-initqueue.service
15 After=dracut-pre-udev.service systemd-udevd.service
16 Wants=dracut-pre-udev.service systemd-udevd.service
17 ConditionPathExists=/etc/initrd-release
18
19 [Service]
20 Type=oneshot
21 ExecStart=-/bin/dracut-pre-trigger
22 StandardInput=null
23 StandardOutput=syslog
24 StandardError=syslog+console
25 KillMode=process
26
27 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
28 # terminates cleanly.
29 KillSignal=SIGHUP