From: Noel Power Date: Fri, 25 Nov 2022 13:04:17 +0000 (+0000) Subject: python/samba: use s3 param samba config parsing X-Git-Tag: talloc-2.4.0~393 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f569f2c17f87f551bcaa6c2fa5d6204107982c3b;p=thirdparty%2Fsamba.git python/samba: use s3 param samba config parsing follup to commit: b4d7540bb4798e6801accf34a26fc0f2636bdd1f fix another instance to use s3 config parsing which is more forgiving (e.g. include directives that point to non existing files are ignored) Signed-off-by: Noel Power Reviewed-by: David Mulder Autobuild-User(master): Noel Power Autobuild-Date(master): Tue Dec 6 10:38:56 UTC 2022 on sn-devel-184 --- diff --git a/python/samba/gp/gpclass.py b/python/samba/gp/gpclass.py index 39a34a75cf0..b5eb4a3515d 100644 --- a/python/samba/gp/gpclass.py +++ b/python/samba/gp/gpclass.py @@ -547,7 +547,8 @@ def rsop(lp, creds, store, gp_extensions, username, target): def parse_gpext_conf(smb_conf): - lp = LoadParm() + from samba.samba3 import param as s3param + lp = s3param.get_context() if smb_conf is not None: lp.load(smb_conf) else: