diff options
author | Giampaolo Lauria <lauria2@yahoo.com> | 2011-09-06 13:05:19 -0400 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-09-09 15:24:03 +1000 |
commit | 4bf1bcfaebc5c37c3641444ffcc3b9310aca9249 (patch) | |
tree | bd08c7d45452f6f40566e1b2a0de476782418ac2 | |
parent | 54aa286b9ade93ff136cc69a6d64b3f017d6e189 (diff) | |
download | samba-4bf1bcfaebc5c37c3641444ffcc3b9310aca9249.tar.gz samba-4bf1bcfaebc5c37c3641444ffcc3b9310aca9249.tar.bz2 samba-4bf1bcfaebc5c37c3641444ffcc3b9310aca9249.zip |
samba-tool: Fixed "dsacl" command syntax
Removed option from syntax to be consistent w/ the rest of commands
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | source4/scripting/python/samba/netcmd/dsacl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/netcmd/dsacl.py b/source4/scripting/python/samba/netcmd/dsacl.py index d6f13c085c..78dae43764 100644 --- a/source4/scripting/python/samba/netcmd/dsacl.py +++ b/source4/scripting/python/samba/netcmd/dsacl.py @@ -50,7 +50,7 @@ from samba.netcmd import ( class cmd_dsacl_set(Command): """Modify access list on a directory object""" - synopsis = "set --objectdn=objectdn --car=control right --action=[deny|allow] --trusteedn=trustee-dn" + synopsis = "%prog dsacl set [options]" car_help = """ The access control right to allow or deny """ takes_options = [ |