network: don't use "ifup -m"
[dracut.git] / modules.d / 98dracut-systemd / dracut-pre-mount.service
blob96ea99508c5b380aa9560a37bb30651b67e8f2a1
1 #  This file is part of systemd.
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.
8 # See systemd.special(7) for details
10 [Unit]
11 Description=dracut pre-mount hook
12 Documentation=man:dracut-pre-mount.service(8)
13 DefaultDependencies=no
14 Before=initrd-root-fs.target sysroot.mount
15 After=dracut-initqueue.service
16 After=cryptsetup.target
17 ConditionPathExists=/usr/lib/initrd-release
18 ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-mount
19 ConditionKernelCommandLine=|rd.break=pre-mount
21 [Service]
22 Environment=DRACUT_SYSTEMD=1
23 Environment=NEWROOT=/sysroot
24 Type=oneshot
25 ExecStart=-/bin/dracut-pre-mount
26 StandardInput=null
27 StandardOutput=syslog
28 StandardError=syslog+console
29 KillMode=process
30 RemainAfterExit=yes
32 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
33 # terminates cleanly.
34 KillSignal=SIGHUP