mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-15 23:59:21 +00:00
No particular reason for updating besides following upstream. Only kpartx has been tested after updating! Seems to work as before; unfortunately that means that as in 0.5.0, "kpartx -d" doesn't do anything. Upstream refreshed the COPYING file, hence the checksum change: $ git log --oneline 0.5.0..HEAD COPYING bf05f63 multipath-tools: replace COPYING with a fresh copy from gnu.org 1d6c88a Update FSF address The QA error that do-not-link-libmpathpersist-to-TMPDIR.patch fixes no longer occurs because upstream changed that particular part of the Makefile. A new patch is needed to avoid building libcheckerrdb, which depends on the (currently) unavailable librados. The other patches had to be refreshed. Signed-off-by: Patrick Ohly <patrick.ohly@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
37 lines
1.0 KiB
Diff
37 lines
1.0 KiB
Diff
From 630483b9738349c8b3e637a00879b96834a33cdb Mon Sep 17 00:00:00 2001
|
|
From: Li xin <lixin.fnst@cn.fujitsu.com>
|
|
Date: Tue, 7 Jul 2015 11:34:36 +0900
|
|
Subject: [PATCH] multipathd.service: Error fix
|
|
|
|
Failed to start Device-Mapper Multipath Device Controller.
|
|
|
|
Upstream-Status: pending
|
|
|
|
Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
|
|
---
|
|
multipathd/multipathd.service | 5 +++--
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/multipathd/multipathd.service b/multipathd/multipathd.service
|
|
index e3d6f91..a7e00b2 100644
|
|
--- a/multipathd/multipathd.service
|
|
+++ b/multipathd/multipathd.service
|
|
@@ -8,11 +8,12 @@ Wants=local-fs-pre.target multipathd.socket blk-availability.service
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
-Type=notify
|
|
+Type=forking
|
|
NotifyAccess=main
|
|
LimitCORE=infinity
|
|
+PIDFile=/var/run/multipathd.pid
|
|
ExecStartPre=/sbin/modprobe -a scsi_dh_alua scsi_dh_emc scsi_dh_rdac dm-multipath
|
|
-ExecStart=/sbin/multipathd -d -s
|
|
+ExecStart=/sbin/multipathd
|
|
ExecReload=/sbin/multipathd reconfigure
|
|
|
|
[Install]
|
|
--
|
|
2.11.0
|
|
|