1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-05 04:59:08 +03:00

r26484: Don't rely on removed header.

(This used to be commit 6ca2b35085)
This commit is contained in:
Jelmer Vernooij
2007-12-17 04:56:54 +01:00
committed by Stefan Metzmacher
parent 71e2cafe96
commit be99991267
3 changed files with 8 additions and 4 deletions

View File

@ -10,7 +10,7 @@ import os
import pwd
import grp
import time
import uuid, sid, misc
import uuid, misc
from socket import gethostname, gethostbyname
import param
import registry
@ -61,8 +61,8 @@ class ProvisionSettings(object):
"SCHEMADN_MOD": "schema_fsmo",
"SCHEMADN_MOD2": ",objectguid",
"CONFIGDN": self.configdn,
"TDB_MODULES_LIST": ","+",".join(self.tdb_modules_list)
"MODULES_LIST2": ",".join(self.modules_list2)
"TDB_MODULES_LIST": ","+",".join(self.tdb_modules_list),
"MODULES_LIST2": ",".join(self.modules_list2),
"CONFIGDN_LDB": self.configdn_ldb,
"DOMAINDN": self.domaindn,
"DOMAINDN_LDB": self.domaindn_ldb,