diff options
author | Giampaolo Lauria <lauria2@yahoo.com> | 2011-09-06 13:15:25 -0400 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-09-09 15:24:03 +1000 |
commit | 4f26c526145ff32bc7d1f9411169618eaf9673fc (patch) | |
tree | 9627035a913e959c606cdd9fa225519ffa72c422 /source4 | |
parent | 87a6102c62f2b726b8ecda72e68643eeac479c7d (diff) | |
download | samba-4f26c526145ff32bc7d1f9411169618eaf9673fc.tar.gz samba-4f26c526145ff32bc7d1f9411169618eaf9673fc.tar.bz2 samba-4f26c526145ff32bc7d1f9411169618eaf9673fc.zip |
samba-tool: Fixed "ntacl" subcommands syntax
Removed options from syntax
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/netcmd/ntacl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/netcmd/ntacl.py b/source4/scripting/python/samba/netcmd/ntacl.py index 1335644c79..d93835bda1 100644 --- a/source4/scripting/python/samba/netcmd/ntacl.py +++ b/source4/scripting/python/samba/netcmd/ntacl.py @@ -41,7 +41,7 @@ from samba.netcmd import ( class cmd_ntacl_set(Command): """Set ACLs on a file""" - synopsis = "%prog set <acl> <file> [--xattr-backend=native|tdb] [--eadb-file=file] [options]" + synopsis = "%prog set <acl> <file> [options]" takes_options = [ Option("--quiet", help="Be quiet", action="store_true"), @@ -79,7 +79,7 @@ class cmd_ntacl_set(Command): class cmd_ntacl_get(Command): """Set ACLs on a file""" - synopsis = "%prog get <file> [--as-sddl] [--xattr-backend=native|tdb] [--eadb-file=file] [options]" + synopsis = "%prog get <file> [options]" takes_options = [ Option("--as-sddl", help="Output ACL in the SDDL format", action="store_true"), |