- Write proper regex into multipath.conf to prevent syntax error there (bnc#883883) Add: 0001-multipath-Write-proper-regex-into-multipath-conf.patch OBS-URL: https://build.opensuse.org/request/show/247100 OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/kdump?expand=0&rev=101
27 lines
831 B
Diff
27 lines
831 B
Diff
From 4ce21a05fdfa91cb894d140c1962b29fb4b1431a Mon Sep 17 00:00:00 2001
|
|
From: Julian Wolf <juwolf@suse.de>
|
|
Date: Mon, 1 Sep 2014 15:46:21 +0200
|
|
Subject: multipath: Write proper regex into multipath.conf
|
|
|
|
Signed-off-by: Julian Wolf <juwolf@suse.de>
|
|
---
|
|
kdumptool/multipath.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/kdumptool/multipath.cc b/kdumptool/multipath.cc
|
|
index 4ffe493..a9acafc 100644
|
|
--- a/kdumptool/multipath.cc
|
|
+++ b/kdumptool/multipath.cc
|
|
@@ -206,7 +206,7 @@ void AddBlacklistHandler::outputLine(const string &raw)
|
|
// -----------------------------------------------------------------------------
|
|
void AddBlacklistHandler::doBlacklist(lineHandler handler)
|
|
{
|
|
- (this->*handler)("\twwid \"*\"\n");
|
|
+ (this->*handler)("\twwid \".*\"\n");
|
|
m_blacklist_done = true;
|
|
}
|
|
|
|
--
|
|
1.8.1.4
|
|
|