From e48e52ccbf869424998cd369803ad7159e4d8635 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Wed, 17 Apr 2024 17:33:22 +0000 Subject: [PATCH] Fix rpminspect.yaml syntax Any entries in the shellsyntax inspection block that contain wildcards for glob(7) specification need to be wrapped in single quotes. Thanks to David Cantrell who discovered this problem (in OSCI-6724) and proposed the fix. --- rpminspect.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rpminspect.yaml b/rpminspect.yaml index 9ecef15..fa72fcd 100644 --- a/rpminspect.yaml +++ b/rpminspect.yaml @@ -1,5 +1,3 @@ - - # exclude ownership tests; we need setuid/gids as is ownership: ignore: @@ -23,4 +21,4 @@ permissions: # some stap scripts are wrapped within /bin/sh that confuses rpminspect shellsyntax: ignore: - - *.stp + - '*.stp'