From 023508ed17155309013ec684fa49d2d76d030dd0 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 6 Jul 2012 19:57:58 +1000 Subject: pydsdb: Add bindings for dsdb_wellknown_dn() --- source4/scripting/python/samba/samdb.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/scripting') diff --git a/source4/scripting/python/samba/samdb.py b/source4/scripting/python/samba/samdb.py index 416cd163d7..7451b6c624 100644 --- a/source4/scripting/python/samba/samdb.py +++ b/source4/scripting/python/samba/samdb.py @@ -744,6 +744,9 @@ accountExpires: %u def get_nc_root(self, dn): return dsdb._dsdb_get_nc_root(self, dn) + def get_wellknown_dn(self, nc_root, wkguid): + return dsdb._dsdb_get_wellknown_dn(self, nc_root, wkguid) + def set_minPwdAge(self, value): m = ldb.Message() m.dn = ldb.Dn(self, self.domain_dn()) -- cgit