diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-02 15:49:36 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-06 15:02:39 +1000 |
commit | 834d590bcff79e2d458b9e193be0c64e849a6362 (patch) | |
tree | c0bb30dcbdd4f49be651e08e78c1e0b9e1a4b147 /source4/scripting/python/samba/idmap.py | |
parent | 1565da76947f91add10a54096cdfe2ab67917b32 (diff) | |
download | samba-834d590bcff79e2d458b9e193be0c64e849a6362.tar.gz samba-834d590bcff79e2d458b9e193be0c64e849a6362.tar.xz samba-834d590bcff79e2d458b9e193be0c64e849a6362.zip |
s4-param Remove 'idmap database'
This is now just idmap.ldb in the private dir, which remains.
Diffstat (limited to 'source4/scripting/python/samba/idmap.py')
-rw-r--r-- | source4/scripting/python/samba/idmap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/idmap.py b/source4/scripting/python/samba/idmap.py index 93fca46edd3..9d957341de8 100644 --- a/source4/scripting/python/samba/idmap.py +++ b/source4/scripting/python/samba/idmap.py @@ -41,7 +41,7 @@ class IDmapDB(samba.Ldb): self.lp = lp if url is None: - url = lp.get("idmap database") + url = lp.private_path("idmap.ldb") super(IDmapDB, self).__init__(url=url, lp=lp, modules_dir=modules_dir, session_info=session_info, credentials=credentials, flags=flags, |