summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-04-15 17:10:47 +0200
committerAndrew Bartlett <abartlet@samba.org>2008-04-15 17:10:47 +0200
commit2ddd23a8754258b7322f37a0e0b97587b23f338b (patch)
tree395881a912bb0da9d0ee01dd159416372d177815 /source4
parentdfedfae1cd1c1af54609fd56dafe8eb026f9382c (diff)
downloadsamba-2ddd23a8754258b7322f37a0e0b97587b23f338b.tar.gz
samba-2ddd23a8754258b7322f37a0e0b97587b23f338b.tar.bz2
samba-2ddd23a8754258b7322f37a0e0b97587b23f338b.zip
Re-add 'db' subdirectory for LDAP backend provision
Andrew Bartlett (This used to be commit 19890c0d15adf4f099365f276a4bfdd3f4de52b6)
Diffstat (limited to 'source4')
-rw-r--r--source4/scripting/python/samba/provision.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py
index 45965a2429..0e8840646c 100644
--- a/source4/scripting/python/samba/provision.py
+++ b/source4/scripting/python/samba/provision.py
@@ -1242,9 +1242,9 @@ refint_attributes""" + refint_attributes + "\n";
setup_file(setup_path("modules.conf"), paths.modulesconf,
{"REALM": names.realm})
- setup_db_config(setup_path, os.path.join(paths.ldapdir, "user"))
- setup_db_config(setup_path, os.path.join(paths.ldapdir, "config"))
- setup_db_config(setup_path, os.path.join(paths.ldapdir, "schema"))
+ setup_db_config(setup_path, os.path.join(paths.ldapdir, os.path.join("db", "user")))
+ setup_db_config(setup_path, os.path.join(paths.ldapdir, os.path.join("db", "config")))
+ setup_db_config(setup_path, os.path.join(paths.ldapdir, os.path.join("db", "schema")))
mapping = "schema-map-openldap-2.3"
backend_schema = "backend-schema.schema"