diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-07-13 13:05:19 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-07-13 12:51:05 +0200 |
commit | 2087eb1602d647a7b14523820834231f50dea79d (patch) | |
tree | 660826d9d52195800cf44f93f2429c21e5778a2b /source4/scripting/python/samba/upgradehelpers.py | |
parent | c60a48948a75a6d300e31c2a2629daa4a48cbeb1 (diff) | |
download | samba-2087eb1602d647a7b14523820834231f50dea79d.tar.gz samba-2087eb1602d647a7b14523820834231f50dea79d.tar.xz samba-2087eb1602d647a7b14523820834231f50dea79d.zip |
ldb: use base searches for @ special DNs
subtree searches on these DNs don't work any more
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/scripting/python/samba/upgradehelpers.py')
-rwxr-xr-x | source4/scripting/python/samba/upgradehelpers.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source4/scripting/python/samba/upgradehelpers.py b/source4/scripting/python/samba/upgradehelpers.py index e15523033fb..1ee1c044e7c 100755 --- a/source4/scripting/python/samba/upgradehelpers.py +++ b/source4/scripting/python/samba/upgradehelpers.py @@ -441,10 +441,8 @@ def update_secrets(newsecrets_ldb, secrets_ldb, messagefunc): """ messagefunc(SIMPLE, "Update of secrets.ldb") - reference = newsecrets_ldb.search(expression="dn=@MODULES", base="", - scope=SCOPE_SUBTREE) - current = secrets_ldb.search(expression="dn=@MODULES", base="", - scope=SCOPE_SUBTREE) + reference = newsecrets_ldb.search(base="@MODULES", scope=SCOPE_BASE) + current = secrets_ldb.search(base="@MODULES", scope=SCOPE_BASE) assert reference, "Reference modules list can not be empty" if len(current) == 0: # No modules present |