diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-06-14 02:15:32 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-06-15 17:21:39 +0200 |
commit | 8c88c9c5006bd4e23105740defa7db0949a21e74 (patch) | |
tree | 3f2675a0c2d81e609917521280c84551e1b9b747 /source4/scripting/python/samba/provision.py | |
parent | 026fcc6a4f1b50518f2b1d33b278f5b671fb18a1 (diff) | |
download | samba-8c88c9c5006bd4e23105740defa7db0949a21e74.tar.gz samba-8c88c9c5006bd4e23105740defa7db0949a21e74.tar.xz samba-8c88c9c5006bd4e23105740defa7db0949a21e74.zip |
Attempt to fix SamDB test infrastructure (not used in Samba anywhere, only in OpenChange).
Diffstat (limited to 'source4/scripting/python/samba/provision.py')
-rw-r--r-- | source4/scripting/python/samba/provision.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 60d7fc9271..8b07f892e9 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -416,7 +416,7 @@ def guess_names(lp=None, hostname=None, domain=None, dnsdomain=None, def make_smbconf(smbconf, setup_path, hostname, domain, realm, serverrole, - targetdir, sid_generator,eadb): + targetdir, sid_generator="internal", eadb=False): """Create a new smb.conf file based on a couple of basic settings. """ assert smbconf is not None @@ -844,7 +844,7 @@ def setup_gpo(sysvolpath, dnsdomain, policyguid, policyguid_dc): def setup_samdb(path, setup_path, session_info, provision_backend, lp, names, logger, domainsid, domainguid, policyguid, policyguid_dc, fill, adminpass, krbtgtpass, machinepass, invocationid, dnspass, ntdsguid, - serverrole, am_rodc, dom_for_fun_level=None, schema=None): + serverrole, am_rodc=False, dom_for_fun_level=None, schema=None): """Setup a complete SAM Database. :note: This will wipe the main SAM database file! @@ -1120,7 +1120,7 @@ def provision(setup_dir, logger, session_info, sitename=None, ol_mmr_urls=None, ol_olc=None, setup_ds_path=None, slapd_path=None, nosync=False, - ldap_dryrun_mode=False,useeadb=False, am_rodc=False): + ldap_dryrun_mode=False, useeadb=False, am_rodc=False): """Provision samba4 :note: caution, this wipes all existing data! |