network: don't use "ifup -m"
[dracut.git] / modules.d / 98dracut-systemd / dracut-cmdline.service
blob6eeb991a9c42dc167c276fb10a308a8d7ef8423f
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 cmdline hook
12 Documentation=man:dracut-cmdline.service(8)
13 DefaultDependencies=no
14 Before=dracut-pre-udev.service
15 After=systemd-journald.socket
16 Wants=systemd-journald.socket
17 ConditionPathExists=/usr/lib/initrd-release
18 ConditionPathExistsGlob=|/etc/cmdline.d/*.conf
19 ConditionDirectoryNotEmpty=|/lib/dracut/hooks/cmdline
20 ConditionKernelCommandLine=|rd.break=cmdline
21 ConditionKernelCommandLine=|resume
22 ConditionKernelCommandLine=|noresume
24 [Service]
25 Environment=DRACUT_SYSTEMD=1
26 Environment=NEWROOT=/sysroot
27 Type=oneshot
28 ExecStart=-/bin/dracut-cmdline
29 StandardInput=null
30 StandardOutput=syslog
31 StandardError=syslog+console
32 KillMode=process
33 RemainAfterExit=yes
35 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
36 # terminates cleanly.
37 KillSignal=SIGHUP