Shawn Dunn
7955a4d13a
- Update dracut to 037 * Add --hostonly_cmdline switch * Update --mount syntax * Include modules from /updates directory * Fixes for network setup * Some small fixes - Rediff patches - Include iscsiuio again (bnc#872474) Remove: remove-iscsiuio.patch - Install 59-scsi-sg_utils.rules (bnc#872478) Add: 0015-95udev-rules-Add-59-scsi-sg_utils.rules.patch - Install 67-kpartx-compat.rules (bnc#872662) Add: 0016-90multipath-add-67-kpartx-compat.rules.patch - Install separate multipath service file (bnc#871610) Add: 0017-90multipath-install-dracut-specific-service-file.patch - Do not fsck and mount from fstab if systemd is used (bnc# Add: 0018-fstab-do-not-mount-and-fsck-from-fstab-if-using-syst.patch - Fixup initqueue for remote-fs Add: 0019-dracut-initqueue-service-runs-before-remote-fs-pre.t.patch OBS-URL: https://build.opensuse.org/request/show/229484 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=124
62 lines
2.2 KiB
Diff
62 lines
2.2 KiB
Diff
From 985b280a49b90f0daa3e7b0a142099ae829efe12 Mon Sep 17 00:00:00 2001
|
|
From: Hannes Reinecke <hare@suse.de>
|
|
Date: Tue, 8 Apr 2014 10:04:41 +0200
|
|
Subject: [PATCH] 90multipath: install dracut-specific service file
|
|
|
|
The multipathd package might install a service and a socket
|
|
file. Using the original service file from the installed
|
|
system without the socket file triggers a bug in systemd,
|
|
causing systemd to crash.
|
|
|
|
As we don't actually need to socket file in the initrd we
|
|
should be installing our own service file which does not
|
|
reference the socket file at all.
|
|
|
|
References: bnc#871610
|
|
|
|
Signed-off-by: Hannes Reinecke <hare@suse.de>
|
|
---
|
|
modules.d/90multipath/module-setup.sh | 3 +--
|
|
modules.d/90multipath/multipathd.service | 15 +++++++++++++++
|
|
2 files changed, 16 insertions(+), 2 deletions(-)
|
|
create mode 100644 modules.d/90multipath/multipathd.service
|
|
|
|
diff --git a/modules.d/90multipath/module-setup.sh b/modules.d/90multipath/module-setup.sh
|
|
index c2bbdb4..9715851 100755
|
|
--- a/modules.d/90multipath/module-setup.sh
|
|
+++ b/modules.d/90multipath/module-setup.sh
|
|
@@ -91,8 +91,7 @@ install() {
|
|
inst_libdir_file "libmultipath*" "multipath/*"
|
|
|
|
if dracut_module_included "systemd"; then
|
|
- inst_multiple \
|
|
- $systemdsystemunitdir/multipathd.service
|
|
+ inst_simple "${moddir}/multipathd.service" "${systemdsystemunitdir}/multipathd.service"
|
|
mkdir -p "${initdir}${systemdsystemconfdir}/sysinit.target.wants"
|
|
ln -rfs "${initdir}${systemdsystemunitdir}/multipathd.service" "${initdir}${systemdsystemconfdir}/sysinit.target.wants/multipathd.service"
|
|
else
|
|
diff --git a/modules.d/90multipath/multipathd.service b/modules.d/90multipath/multipathd.service
|
|
new file mode 100644
|
|
index 0000000..01e497c
|
|
--- /dev/null
|
|
+++ b/modules.d/90multipath/multipathd.service
|
|
@@ -0,0 +1,15 @@
|
|
+[Unit]
|
|
+Description=Device-Mapper Multipath Device Controller
|
|
+Before=iscsi.service iscsid.service lvm2-activation-early.service
|
|
+DefaultDependencies=no
|
|
+Conflicts=shutdown.target
|
|
+
|
|
+[Service]
|
|
+Type=forking
|
|
+ExecStartPre=/sbin/modprobe dm-multipath
|
|
+ExecStart=/sbin/multipathd
|
|
+ExecReload=/sbin/multipathd reconfigure
|
|
+ExecStop=/sbin/multipathd shutdown
|
|
+
|
|
+[Install]
|
|
+WantedBy=sysinit.target
|
|
--
|
|
1.8.1.4
|
|
|