Blame SOURCES/bz2041933-bz2041935-3-fencing-source_env-dont-process-empty-lines.patch

33dd94
From fbca33a536413565108374dd4ed3237b6f7896bd Mon Sep 17 00:00:00 2001
33dd94
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
33dd94
Date: Mon, 15 Aug 2022 10:40:19 +0200
33dd94
Subject: [PATCH] fencing: source_env(): dont process empty lines
33dd94
33dd94
---
33dd94
 lib/fencing.py.py | 2 +-
33dd94
 1 file changed, 1 insertion(+), 1 deletion(-)
33dd94
33dd94
diff --git a/lib/fencing.py.py b/lib/fencing.py.py
33dd94
index fc3679e33..940bd01d1 100644
33dd94
--- a/lib/fencing.py.py
33dd94
+++ b/lib/fencing.py.py
33dd94
@@ -1264,7 +1264,7 @@ def source_env(env_file):
33dd94
                           executable="/bin/sh")
33dd94
     # replace env
33dd94
     os.environ.clear()
33dd94
-    os.environ.update(line.partition('=')[::2] for line in output.decode("utf-8").split('\0'))
33dd94
+    os.environ.update(line.partition('=')[::2] for line in output.decode("utf-8").split('\0') if not re.match("^\s*$", line))
33dd94
 
33dd94
 # Convert array of format [[key1, value1], [key2, value2], ... [keyN, valueN]] to dict, where key is
33dd94
 # in format a.b.c.d...z and returned dict has key only z