1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

samba-tool: improved user enable error handling

This commit is contained in:
Andrew Tridgell
2011-06-01 14:41:51 +10:00
parent 23177b5f44
commit 7b3d8b6c90
2 changed files with 8 additions and 1 deletions

View File

@ -79,6 +79,8 @@ class SamDB(samba.Ldb):
"""
res = self.search(base=self.domain_dn(), scope=ldb.SCOPE_SUBTREE,
expression=search_filter, attrs=["userAccountControl"])
if len(res) == 0:
raise Exception('Unable to find user "%s"' % search_filter)
assert(len(res) == 1)
user_dn = res[0].dn