diff options
Diffstat (limited to 'source4/scripting/python/samba/netcmd/drs.py')
-rw-r--r-- | source4/scripting/python/samba/netcmd/drs.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/scripting/python/samba/netcmd/drs.py b/source4/scripting/python/samba/netcmd/drs.py index 78b998e0f56..2f0e3066aec 100644 --- a/source4/scripting/python/samba/netcmd/drs.py +++ b/source4/scripting/python/samba/netcmd/drs.py @@ -101,7 +101,7 @@ def get_dsServiceName(samdb): class cmd_drs_showrepl(Command): """show replication status""" - synopsis = "%prog drs showrepl [<DC>] [options]" + synopsis = "%prog [<DC>] [options]" takes_args = ["DC?"] @@ -206,7 +206,7 @@ class cmd_drs_showrepl(Command): class cmd_drs_kcc(Command): """trigger knowledge consistency center run""" - synopsis = "%prog drs kcc [<DC>] [options]" + synopsis = "%prog [<DC>] [options]" takes_args = ["DC?"] @@ -269,7 +269,7 @@ def drs_local_replicate(self, SOURCE_DC, NC): class cmd_drs_replicate(Command): """replicate a naming context between two DCs""" - synopsis = "%prog drs replicate <destinationDC> <sourceDC> <NC> [options]" + synopsis = "%prog <destinationDC> <sourceDC> <NC> [options]" takes_args = ["DEST_DC", "SOURCE_DC", "NC"] @@ -344,7 +344,7 @@ class cmd_drs_replicate(Command): class cmd_drs_bind(Command): """show DRS capabilities of a server""" - synopsis = "%prog drs bind [<DC>] [options]" + synopsis = "%prog [<DC>] [options]" takes_args = ["DC?"] @@ -437,7 +437,7 @@ class cmd_drs_bind(Command): class cmd_drs_options(Command): """query or change 'options' for NTDS Settings object of a domain controller""" - synopsis = ("%prog drs options [<DC>] [options]") + synopsis = "%prog [<DC>] [options]" takes_args = ["DC?"] |