Blame SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch

c0cff7
From a29d4a5632ff9f60f939e4f0f36ce97ed43c5650 Mon Sep 17 00:00:00 2001
c0cff7
From: "Richard W.M. Jones" <rjones@redhat.com>
c0cff7
Date: Thu, 22 Dec 2022 10:31:47 +0000
c0cff7
Subject: [PATCH] Rearrange lxc test to avoid use of cat
c0cff7
c0cff7
Thanks: Elias Probst <e.probst@ssc-services.de>
c0cff7
---
c0cff7
 virt-what.in | 3 ++-
c0cff7
 1 file changed, 2 insertions(+), 1 deletion(-)
c0cff7
c0cff7
diff --git a/virt-what.in b/virt-what.in
c0cff7
index d090898e5..170bc24ab 100644
c0cff7
--- a/virt-what.in
c0cff7
+++ b/virt-what.in
c0cff7
@@ -175,7 +175,8 @@ fi
c0cff7
 # Added by Marc Fournier
c0cff7
 
c0cff7
 if [ -e "${root}/proc/1/environ" ] &&
c0cff7
-    cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=lxc'; then
c0cff7
+    tr '\000' '\n' < "${root}/proc/1/environ" |
c0cff7
+        grep -Eiq '^container=lxc'; then
c0cff7
     echo lxc
c0cff7
 fi
c0cff7
 
c0cff7
-- 
c0cff7
2.31.1
c0cff7