Blame SOURCES/fc_wwpn_id-non_FC-devices.patch

85ee44
From 37b8af8278bba0b116b579950218f2e610a2ab2b Mon Sep 17 00:00:00 2001
85ee44
From: jtpittman195 <jpittman@redhat.com>
85ee44
Date: Fri, 4 Oct 2019 10:58:24 -0400
85ee44
Subject: [PATCH] fc_wwpn_id: add condition to FC_TARGET_LUN return
85ee44
85ee44
If there is no relevant fc_remote_port or fc_host found, there is no need to return the target_lun number.  Returning with no condition causes a FC_TARGET_LUN value to be present in the udev database for devices that are not fibre attached.  Add condition to check.
85ee44
---
85ee44
 scripts/fc_wwpn_id | 4 +++-
85ee44
 1 file changed, 3 insertions(+), 1 deletion(-)
85ee44
85ee44
diff --git a/scripts/fc_wwpn_id b/scripts/fc_wwpn_id
85ee44
index c8d0189..b05c5e8 100644
85ee44
--- a/scripts/fc_wwpn_id
85ee44
+++ b/scripts/fc_wwpn_id
85ee44
@@ -38,7 +38,9 @@ while [ -n "$d" ] ; do
85ee44
     esac
85ee44
 done
85ee44
 
85ee44
-echo "FC_TARGET_LUN=$target_lun"
85ee44
+if [ -n "$rport_wwpn" ] || [ -n "$host_wwpn" ] ; then
85ee44
+    echo "FC_TARGET_LUN=$target_lun"
85ee44
+fi
85ee44
 
85ee44
 if [ -n "$rport_wwpn" ] ; then
85ee44
     echo "FC_TARGET_WWPN=$rport_wwpn"