summaryrefslogtreecommitdiff
path: root/source4/scripting/python/samba/netcmd/ntacl.py
diff options
context:
space:
mode:
authorNadezhda Ivanova <nadezhda.ivanova@postpath.com>2010-03-16 13:06:08 +0200
committerNadezhda Ivanova <nadezhda.ivanova@postpath.com>2010-03-16 13:37:48 +0200
commita212c1dedb749b98d17c67db4278d1f1bb66d468 (patch)
treeff76fd7e68c2f91c4a3de65318512095c61147c8 /source4/scripting/python/samba/netcmd/ntacl.py
parent4379b082b80e4976120860310259248eea09f863 (diff)
downloadsamba-a212c1dedb749b98d17c67db4278d1f1bb66d468.tar.gz
samba-a212c1dedb749b98d17c67db4278d1f1bb66d468.tar.bz2
samba-a212c1dedb749b98d17c67db4278d1f1bb66d468.zip
Added a net acl ds command for modification of ACLs on directory objects
At present the command supports only addition of control access rigts, done so DRS access checks can be tested. It will be expanded to deal with most ways to modify and view a DS ACL. Shifted commands a bit. What used to be net acl is now "net acl nt" as apposed to this, which is "net acl ds" ./bin/net acl ds set --help Usage: set --objectdn=objectdn --car=control right --action=[deny|allow] --trusteedn=trustee-dn Options: -h, --help show this help message and exit --host=HOST LDB URL for database or target server --car=CAR The access control right to allow or deny --action=ACTION Deny or allow access --objectdn=OBJECTDN DN of the object whose SD to modify --trusteedn=TRUSTEEDN DN of the entity that gets access Samba Common Options: -s FILE, --configfile=FILE Configuration file Credentials Options: --simple-bind-dn=DN DN to use for a simple bind --password=PASSWORD Password -U USERNAME, --username=USERNAME Username -W WORKGROUP, --workgroup=WORKGROUP Workgroup -N, --no-pass Don't ask for a password -k KERBEROS, --kerberos=KERBEROS Use Kerberos
Diffstat (limited to 'source4/scripting/python/samba/netcmd/ntacl.py')
-rw-r--r--source4/scripting/python/samba/netcmd/ntacl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/netcmd/ntacl.py b/source4/scripting/python/samba/netcmd/ntacl.py
index 9b25ca2ba3..ebb66864d7 100644
--- a/source4/scripting/python/samba/netcmd/ntacl.py
+++ b/source4/scripting/python/samba/netcmd/ntacl.py
@@ -110,7 +110,7 @@ class cmd_acl_get(Command):
acl.dump()
-class cmd_acl(SuperCommand):
+class cmd_nt_acl(SuperCommand):
"""NT ACLs manipulation"""
subcommands = {}