From f4d581468c467135553bba657a40ca1eb6ccc11c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 28 Mar 2011 14:17:45 +1100 Subject: s4-fsmo: samba-tool fsmo takes a URL, not a hostname better to call the option --url Pair-Programmed-With: Andrew Bartlett --- source4/scripting/python/samba/netcmd/fsmo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/scripting/python') diff --git a/source4/scripting/python/samba/netcmd/fsmo.py b/source4/scripting/python/samba/netcmd/fsmo.py index 0c8d17c74f..df6bb20ba3 100644 --- a/source4/scripting/python/samba/netcmd/fsmo.py +++ b/source4/scripting/python/samba/netcmd/fsmo.py @@ -43,7 +43,7 @@ class cmd_fsmo(Command): } takes_options = [ - Option("--host", help="LDB URL for database or target server", type=str), + Option("--url", help="LDB URL for database or target server", type=str), Option("--force", help="Force seizing of the role without attempting to transfer first.", action="store_true"), Option("--role", type="choice", choices=["rid", "pdc", "infrastructure","schema","naming","all"], help="""The FSMO role to seize or transfer.\n @@ -130,12 +130,12 @@ all=all of the above"""), "fSMORoleOwner") samdb.modify(m) - def run(self, subcommand, force=None, host=None, role=None, + def run(self, subcommand, force=None, url=None, role=None, credopts=None, sambaopts=None, versionopts=None): lp = sambaopts.get_loadparm() creds = credopts.get_credentials(lp, fallback_machine=True) - samdb = SamDB(url=host, session_info=system_session(), + samdb = SamDB(url=url, session_info=system_session(), credentials=creds, lp=lp) domain_dn = samdb.domain_dn() -- cgit