]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
systemd: add missing dracut-mount.service dracut-pre-mount.service
authorHarald Hoyer <harald@redhat.com>
Thu, 7 Mar 2013 10:46:46 +0000 (11:46 +0100)
committerHarald Hoyer <harald@redhat.com>
Thu, 7 Mar 2013 10:47:00 +0000 (11:47 +0100)
modules.d/98systemd/dracut-mount.service [new file with mode: 0644]
modules.d/98systemd/dracut-pre-mount.service [new file with mode: 0644]

diff --git a/modules.d/98systemd/dracut-mount.service b/modules.d/98systemd/dracut-mount.service
new file mode 100644 (file)
index 0000000..b478067
--- /dev/null
@@ -0,0 +1,31 @@
+#  This file is part of systemd.
+#
+#  systemd is free software; you can redistribute it and/or modify it
+#  under the terms of the GNU Lesser General Public License as published by
+#  the Free Software Foundation; either version 2.1 of the License, or
+#  (at your option) any later version.
+
+# See systemd.special(7) for details
+
+[Unit]
+Description=dracut mount hook
+Documentation=man:dracut-mount.service(8)
+DefaultDependencies=no
+After=dracut-pre-mount.service dracut-initqueue.service initrd-parse-etc.service local-fs.target
+Wants=local-fs.target
+ConditionPathExists=/etc/initrd-release
+ConditionDirectoryNotEmpty=|/lib/dracut/hooks/mount
+ConditionKernelCommandLine=|rd.break=mount
+
+[Service]
+Type=oneshot
+ExecStart=-/bin/dracut-mount
+StandardInput=null
+StandardOutput=syslog
+StandardError=syslog+console
+KillMode=process
+RemainAfterExit=yes
+
+# Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
+# terminates cleanly.
+KillSignal=SIGHUP
diff --git a/modules.d/98systemd/dracut-pre-mount.service b/modules.d/98systemd/dracut-pre-mount.service
new file mode 100644 (file)
index 0000000..39c830c
--- /dev/null
@@ -0,0 +1,32 @@
+#  This file is part of systemd.
+#
+#  systemd is free software; you can redistribute it and/or modify it
+#  under the terms of the GNU Lesser General Public License as published by
+#  the Free Software Foundation; either version 2.1 of the License, or
+#  (at your option) any later version.
+
+# See systemd.special(7) for details
+
+[Unit]
+Description=dracut pre-mount hook
+Documentation=man:dracut-pre-mount.service(8)
+DefaultDependencies=no
+Before=sysroot.mount local-fs.target
+After=dracut-initqueue.service
+After=cryptsetup.target
+ConditionPathExists=/etc/initrd-release
+ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-mount
+ConditionKernelCommandLine=|rd.break=pre-mount
+
+[Service]
+Type=oneshot
+ExecStart=-/bin/dracut-pre-mount
+StandardInput=null
+StandardOutput=syslog
+StandardError=syslog+console
+KillMode=process
+RemainAfterExit=yes
+
+# Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
+# terminates cleanly.
+KillSignal=SIGHUP