summaryrefslogtreecommitdiff
path: root/source4/scripting/python/samba/netcmd/ntacl.py
diff options
context:
space:
mode:
Diffstat (limited to 'source4/scripting/python/samba/netcmd/ntacl.py')
-rw-r--r--source4/scripting/python/samba/netcmd/ntacl.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/source4/scripting/python/samba/netcmd/ntacl.py b/source4/scripting/python/samba/netcmd/ntacl.py
index d33dc9b9a6..1335644c79 100644
--- a/source4/scripting/python/samba/netcmd/ntacl.py
+++ b/source4/scripting/python/samba/netcmd/ntacl.py
@@ -37,7 +37,9 @@ from samba.netcmd import (
Option,
)
-class cmd_acl_set(Command):
+
+
+class cmd_ntacl_set(Command):
"""Set ACLs on a file"""
synopsis = "%prog set <acl> <file> [--xattr-backend=native|tdb] [--eadb-file=file] [options]"
@@ -74,7 +76,8 @@ class cmd_acl_set(Command):
raise CommandError("Unable to read domain SID from configuration files")
-class cmd_acl_get(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]"
@@ -99,10 +102,11 @@ class cmd_acl_get(Command):
acl.dump()
-class cmd_nt_acl(SuperCommand):
+
+class cmd_ntacl(SuperCommand):
"""NT ACLs manipulation"""
subcommands = {}
- subcommands["set"] = cmd_acl_set()
- subcommands["get"] = cmd_acl_get()
+ subcommands["set"] = cmd_ntacl_set()
+ subcommands["get"] = cmd_ntacl_get()