diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-04-09 14:40:19 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-04-09 14:40:19 +1000 |
commit | 65ad2ced6049f2901080cff61489fee7f4929c74 (patch) | |
tree | 2421edc608db8a094113fd6ba876598329a5c060 /source4/scripting/python/samba/samdb.py | |
parent | e5702da72c752e913ff869bce341ca9799d10974 (diff) | |
parent | 9d50c6b60364462daa68887fd64b59dd761a5133 (diff) | |
download | samba-65ad2ced6049f2901080cff61489fee7f4929c74.tar.gz samba-65ad2ced6049f2901080cff61489fee7f4929c74.tar.xz samba-65ad2ced6049f2901080cff61489fee7f4929c74.zip |
Merge branch 'wspp-schema'
Diffstat (limited to 'source4/scripting/python/samba/samdb.py')
-rw-r--r-- | source4/scripting/python/samba/samdb.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/samdb.py b/source4/scripting/python/samba/samdb.py index b92a91e2ef..17b5450a3e 100644 --- a/source4/scripting/python/samba/samdb.py +++ b/source4/scripting/python/samba/samdb.py @@ -199,7 +199,10 @@ userPassword:: %s glue.samdb_set_domain_sid(self, sid) def attach_schema_from_ldif(self, pf, df): - glue.dsdb_attach_schema_from_ldif_file(self, pf, df) + glue.dsdb_attach_schema_from_ldif(self, pf, df) + + def convert_schema_to_openldap(self, target, mapping): + return glue.dsdb_convert_schema_to_openldap(self, target, mapping) def set_invocation_id(self, invocation_id): """Set the invocation id for this SamDB handle. |