diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-11-23 16:59:21 -0500 |
---|---|---|
committer | Alexander Bokovoy <abokovoy@redhat.com> | 2011-12-09 16:46:25 +0200 |
commit | 55512dc938eb4a9a6655e473beab587e340af55c (patch) | |
tree | 27805ce2bcbd5b9fbb759cfab781ad3575a83792 /tests/test_xmlrpc/objectclasses.py | |
parent | a1c9e3618c9d0e03fc926031f2c65d92da7a8b03 (diff) | |
download | freeipa.git-55512dc938eb4a9a6655e473beab587e340af55c.tar.gz freeipa.git-55512dc938eb4a9a6655e473beab587e340af55c.tar.xz freeipa.git-55512dc938eb4a9a6655e473beab587e340af55c.zip |
Add SELinux user mapping framework.
This will allow one to define what SELinux context a given user gets
on a given machine. A rule can contain a set of users and hosts or it
can point to an existing HBAC rule that defines them.
https://fedorahosted.org/freeipa/ticket/755
Diffstat (limited to 'tests/test_xmlrpc/objectclasses.py')
-rw-r--r-- | tests/test_xmlrpc/objectclasses.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/test_xmlrpc/objectclasses.py b/tests/test_xmlrpc/objectclasses.py index ce904d81..3569579e 100644 --- a/tests/test_xmlrpc/objectclasses.py +++ b/tests/test_xmlrpc/objectclasses.py @@ -123,5 +123,15 @@ netgroup = [ automember = [ u'top', - u'automemberregexrule' + u'automemberregexrule', +] + +selinuxusermap = [ + u'ipaassociation', + u'ipaselinuxusermap', +] + +hbacrule = [ + u'ipaassociation', + u'ipahbacrule', ] |