From: Prarit Bhargava <[email protected]>

redhat/configs/process_configs.sh: Avoid race with find

The find command interferes with other commands that get executed and
results in errors like "find: './.tmp_6391763917': No such file or
directory" being output during process_configs.sh.  This can be avoided by
only looking at the redhat/configs directory where no temp files are
created.

Signed-off-by: Prarit Bhargava <[email protected]>

diff --git a/redhat/configs/process_configs.sh 
b/redhat/configs/process_configs.sh
index blahblah..blahblah 100755
--- a/redhat/configs/process_configs.sh
+++ b/redhat/configs/process_configs.sh
@@ -92,7 +92,7 @@ checkoptions()
        then
                while read -r LINE
                do
-                       if find ./ -name "$(echo "$LINE" | awk -F "=" ' { print 
$1 } ' | awk ' { print $2 }')" -print0 | xargs -0 grep ^ | grep -q 
"process_configs_known_broken"; then
+                       if find "${REDHAT}"/configs -name "$(echo "$LINE" | awk 
-F "=" ' { print $1 } ' | awk ' { print $2 }')" -print0 | xargs -0 grep ^ | 
grep -q "process_configs_known_broken"; then
                                # This is a known broken config.
                                # See script help warning.
                                checkoptions_error=false

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1712
_______________________________________________
kernel mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure

Reply via email to