From 72e51c9d9eed05a8a012b944494306eddd92eae4 Mon Sep 17 00:00:00 2001 From: Fabian Vogt Date: Tue, 23 Aug 2016 12:56:21 +0200 Subject: [PATCH] Fix warning about multipath if not needed Although no device uses multipath, the module checks for presence of the multipath binary first, printing a warning if not present. This patch fixes the wrong ordering. --- modules.d/90multipath/module-setup.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules.d/90multipath/module-setup.sh b/modules.d/90multipath/module-setup.sh index c2c85c4..d4bd6e1 100755 --- a/modules.d/90multipath/module-setup.sh +++ b/modules.d/90multipath/module-setup.sh @@ -3,8 +3,6 @@ # called by dracut check() { local _rootdev - # if there's no multipath binary, no go. - require_binaries multipath || return 1 is_mpath() { local _dev=$1 @@ -17,6 +15,9 @@ check() { for_each_host_dev_and_slaves is_mpath || return 255 } + # if there's no multipath binary, no go. + require_binaries multipath || return 1 + return 0 } -- 2.6.6