Fix nginx test

grep will return 0 when it finds matches.
In our case, when it finds matches, we need to print the warning.
This commit is contained in:
Salamandar 2024-02-24 12:09:38 +01:00 committed by GitHub
parent daf913007a
commit 1a06153655
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1447,7 +1447,7 @@ class Configurations(TestSuite):
cmd = 'grep -q -IhEro "location ~ __PATH__" %s' % (app.path + "/conf/" + filename)
if os.system(cmd) != 0:
if os.system(cmd) == 0:
yield Info(
"When using regexp in the nginx location field (location ~ __PATH__), start the path with ^ (location ~ ^__PATH__)."
)