From: David Mulder Date: Thu, 29 Mar 2018 14:00:15 +0000 (-0600) Subject: gpo: Rename the inf_to class to gp_ext_setter X-Git-Tag: ldb-1.4.0~624 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfd2d70889fdb07bba4d0bb05e59abe2128c84ee;p=thirdparty%2Fsamba.git gpo: Rename the inf_to class to gp_ext_setter This class will be subclassed and used for more than just inf settings application. Signed-off-by: David Mulder Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/gpclass.py b/python/samba/gpclass.py index 33c9001cb6d..efca807fa64 100644 --- a/python/samba/gpclass.py +++ b/python/samba/gpclass.py @@ -302,7 +302,7 @@ class gp_ext(object): def __str__(self): pass -class inf_to(): +class gp_ext_setter(): __metaclass__ = ABCMeta def __init__(self, logger, ldb, gp_db, lp, attribute, val): @@ -328,7 +328,7 @@ class inf_to(): def __str__(self): pass -class inf_to_kdc_tdb(inf_to): +class inf_to_kdc_tdb(gp_ext_setter): def mins_to_hours(self): return '%d' % (int(self.val)/60) @@ -357,7 +357,7 @@ class inf_to_kdc_tdb(inf_to): def __str__(self): return 'Kerberos Policy' -class inf_to_ldb(inf_to): +class inf_to_ldb(gp_ext_setter): '''This class takes the .inf file parameter (essentially a GPO file mapped to a GUID), hashmaps it to the Samba parameter, which then uses an ldb object to update the parameter to Samba4. Not registry oriented whatsoever.