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/enableaccount | |
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/enableaccount')
-rwxr-xr-x | source4/setup/enableaccount | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source4/setup/enableaccount b/source4/setup/enableaccount index 0ca5b39faa..f8f727c1ee 100755 --- a/source4/setup/enableaccount +++ b/source4/setup/enableaccount @@ -36,6 +36,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("--filter", help="LDAP Filter to set password on", type=str) opts, args = parser.parse_args() @@ -54,6 +55,11 @@ if filter is None: 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) + samdb.enable_account(filter) |