From: Chris Hofstaedtler Date: Tue, 27 Aug 2024 18:40:24 +0000 (+0200) Subject: regression-tests.auth-py: avoid authbind on macOS X-Git-Tag: rec-5.2.0-alpha1~115^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41c2999e0a82558682b4c92050e1c6fc72b25d1c;p=thirdparty%2Fpdns.git regression-tests.auth-py: avoid authbind on macOS Not necessary. --- diff --git a/regression-tests.auth-py/authtests.py b/regression-tests.auth-py/authtests.py index 2b096d2efd..5eb6534df8 100644 --- a/regression-tests.auth-py/authtests.py +++ b/regression-tests.auth-py/authtests.py @@ -69,8 +69,10 @@ PrivateKey: Lt0v0Gol3pRUFM7fDdcy0IWN0O/MnEmVPA+VylL8Y4U= """, } - _auth_cmd = ['authbind', - os.environ['PDNS']] + _auth_cmd = [os.environ['PDNS']] + if sys.platform != 'darwin': + _auth_cmd = ['authbind'] + _auth_cmd + _auth_env = {} _auths = {}