summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/samba/gp_sec_ext.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/samba/gp_sec_ext.py b/python/samba/gp_sec_ext.py
index 5e49dec75e1..620e5adfbf5 100644
--- a/python/samba/gp_sec_ext.py
+++ b/python/samba/gp_sec_ext.py
@@ -91,6 +91,8 @@ class gp_krb_ext(gp_inf_ext):
def rsop(self, gpo):
output = {}
+ if self.lp.get('server role') != 'active directory domain controller':
+ return output
inf_file = 'MACHINE/Microsoft/Windows NT/SecEdit/GptTmpl.inf'
if gpo.file_sys_path:
path = os.path.join(gpo.file_sys_path, inf_file)
@@ -205,6 +207,8 @@ class gp_access_ext(gp_inf_ext):
def rsop(self, gpo):
output = {}
+ if self.lp.get('server role') != 'active directory domain controller':
+ return output
inf_file = 'MACHINE/Microsoft/Windows NT/SecEdit/GptTmpl.inf'
if gpo.file_sys_path:
path = os.path.join(gpo.file_sys_path, inf_file)