diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-12-22 09:32:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:37 -0500 |
commit | 77f4910b57db6264d5b6b7f67cab3518a2f2ca4a (patch) | |
tree | 161db82868e01decd64601d1da327208c9e6a666 /source4/dsdb/samdb | |
parent | b1ea93c01641da0f55bf4d97499e13b651c5b20c (diff) | |
download | samba-77f4910b57db6264d5b6b7f67cab3518a2f2ca4a.tar.gz samba-77f4910b57db6264d5b6b7f67cab3518a2f2ca4a.tar.bz2 samba-77f4910b57db6264d5b6b7f67cab3518a2f2ca4a.zip |
r12427: Move SAMR CreateUser2 to transactions, and re-add support for
different computer account types. (Earlier code changes removed the
BDC case).
We don't use the TemplateDomainController, so just have a
TemplateServer in provision_templates.ldif
Andrew Bartlett
(This used to be commit c4520ba2e6fad42a137983a2e1dbcd9c26db74e9)
Diffstat (limited to 'source4/dsdb/samdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/samldb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/samldb.c b/source4/dsdb/samdb/ldb_modules/samldb.c index 6f98298f6b..a959cc9bb4 100644 --- a/source4/dsdb/samdb/ldb_modules/samldb.c +++ b/source4/dsdb/samdb/ldb_modules/samldb.c @@ -406,7 +406,7 @@ static struct ldb_message *samldb_fill_user_or_computer_object(struct ldb_module } if (samldb_find_attribute(msg, "objectclass", "computer") != NULL) { - if (samldb_copy_template(module, msg2, "(&(CN=TemplateMemberServer)(objectclass=userTemplate))") != 0) { + if (samldb_copy_template(module, msg2, "(&(CN=TemplateServer)(objectclass=userTemplate))") != 0) { ldb_debug(module->ldb, LDB_DEBUG_WARNING, "samldb_fill_user_or_computer_object: Error copying computer template!\n"); return NULL; } |