1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

gpo: Remove unused gp_ext.list() function

Signed-off-by: David Mulder <dmulder@suse.com>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
This commit is contained in:
David Mulder 2018-07-19 10:56:29 -06:00 committed by Aurélien Aptel
parent 7bb326a60d
commit 7cef695368
2 changed files with 0 additions and 8 deletions

View File

@ -135,10 +135,6 @@ class gp_sec_ext(gp_inf_ext):
def __str__(self):
return "Security GPO extension"
def list(self, rootpath):
return os.path.join(rootpath,
"MACHINE/Microsoft/Windows NT/SecEdit/GptTmpl.inf")
def apply_map(self):
if self.lp.get('server role') != 'active directory domain controller':
return {}

View File

@ -304,10 +304,6 @@ class gp_ext(object):
self.creds = creds
self.gp_db = store.get_gplog(creds.get_username())
@abstractmethod
def list(self, rootpath):
pass
@abstractmethod
def process_group_policy(self, deleted_gpo_list, changed_gpo_list):
pass