9abf8c
From b0e5702c64f83449d62e83d70d0bb806c6abdc9a Mon Sep 17 00:00:00 2001
9abf8c
From: David Tardon <dtardon@redhat.com>
9abf8c
Date: Tue, 4 Aug 2020 14:16:19 +0200
9abf8c
Subject: [PATCH] match the whole string
9abf8c
9abf8c
(cherry picked from commit ae83919a7a07b5c90cae8ce8b1349efc212a7aee)
9abf8c
9abf8c
Resolves: #1552619
9abf8c
---
9abf8c
 modules.d/95zfcp/parse-zfcp.sh | 2 +-
9abf8c
 1 file changed, 1 insertion(+), 1 deletion(-)
9abf8c
9abf8c
diff --git a/modules.d/95zfcp/parse-zfcp.sh b/modules.d/95zfcp/parse-zfcp.sh
9abf8c
index 6e1514fd..fb4d9c9e 100755
9abf8c
--- a/modules.d/95zfcp/parse-zfcp.sh
9abf8c
+++ b/modules.d/95zfcp/parse-zfcp.sh
9abf8c
@@ -3,7 +3,7 @@
9abf8c
 getargbool 1 rd.zfcp.conf -d -n rd_NO_ZFCPCONF || rm /etc/zfcp.conf
9abf8c
 
9abf8c
 for zfcp_arg in $(getargs rd.zfcp -d 'rd_ZFCP='); do
9abf8c
-    echo $zfcp_arg | grep '0\.[0-9a-fA-F]\.[0-9a-fA-F]\{4\},0x[0-9a-fA-F]\{16\},0x[0-9a-fA-F]\{16\}' >/dev/null
9abf8c
+    echo $zfcp_arg | grep '^0\.[0-9a-fA-F]\.[0-9a-fA-F]\{4\},0x[0-9a-fA-F]\{16\},0x[0-9a-fA-F]\{16\}$' >/dev/null
9abf8c
     test $? -ne 0 && die "For argument 'rd.zfcp=$zfcp_arg'\nSorry, invalid format."
9abf8c
     (
9abf8c
         IFS=","
9abf8c