diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-09-21 11:53:19 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-09-21 11:53:19 +0200 |
commit | f0c080a484ad71ea3ecc38919178986e354501db (patch) | |
tree | 4ad2401f42c3da7fb926620a3d658f2e005b1d46 /source4/setup/domainlevel | |
parent | 0af3b06824825ee42ba0fe7414d774ace72292d0 (diff) | |
download | samba-f0c080a484ad71ea3ecc38919178986e354501db.tar.gz samba-f0c080a484ad71ea3ecc38919178986e354501db.tar.bz2 samba-f0c080a484ad71ea3ecc38919178986e354501db.zip |
s4:scripts - Reintroduce "-H" parameter
I removed it since on some scripts it was present, on others not - so I thought
it wouldn't be really needed. This was a bad decision (pointed out by abartlet).
So I reintroduce it on all scripts (to have consistent parameters).
Diffstat (limited to 'source4/setup/domainlevel')
-rwxr-xr-x | source4/setup/domainlevel | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source4/setup/domainlevel b/source4/setup/domainlevel index b49150ff2d..ceab735c8f 100755 --- a/source4/setup/domainlevel +++ b/source4/setup/domainlevel @@ -39,6 +39,7 @@ parser.add_option_group(sambaopts) parser.add_option_group(options.VersionOptions(parser)) credopts = options.CredentialsOptions(parser) parser.add_option_group(credopts) +parser.add_option("-H", help="LDB URL for database or target server", type=str) parser.add_option("--quiet", help="Be quiet", action="store_true") parser.add_option("--forest", help="The forest function level (2000 | 2003 | 2008 | 2008_R2). We don't support the 2003 with mixed domains (NT4 DC support) level.", type=str) @@ -60,8 +61,12 @@ if len(args) == 0: lp = sambaopts.get_loadparm() creds = credopts.get_credentials(lp) -samdb = SamDB(url=lp.get("sam database"), session_info=system_session(), - credentials=creds, lp=lp) +if opts.H is not None: + url = opts.H +else: + url = lp.get("sam database") + +samdb = SamDB(url=url, session_info=system_session(), credentials=creds, lp=lp) domain_dn = SamDB.domain_dn(samdb) |