diff --git a/modules.d/90multipath/check b/modules.d/90multipath/check index 2723b3d7..cae20523 100755 --- a/modules.d/90multipath/check +++ b/modules.d/90multipath/check @@ -14,14 +14,10 @@ is_mpath() { return 1 } -# If we're in hostonly mode, do mpath if we appear to be using it for / -if [[ $1 = -h ]]; then - rootdev=$(find_root_block_device) - if [[ $rootdev ]]; then - check_block_and_slaves is_mpath "$rootdev" && exit 0 - fi - exit 1 +# Do mpath if we appear to be using it for / +rootdev=$(find_root_block_device) +if [[ $rootdev ]]; then + check_block_and_slaves is_mpath "$rootdev" && exit 0 fi -# the user installed it, they get it... -exit 0 +exit 1 diff --git a/modules.d/90multipath/install b/modules.d/90multipath/install index 432f4f89..8b4d693f 100755 --- a/modules.d/90multipath/install +++ b/modules.d/90multipath/install @@ -1,6 +1,6 @@ #!/bin/bash -if [[ $hostonly ]]; then +if [ -f /etc/multipath.conf ]; then inst /etc/multipath.conf fi