diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-02-22 16:24:41 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-02-23 11:57:10 -0500 |
commit | b5e43bb866392a70d775f31994f7e856972956b2 (patch) | |
tree | c6cf3ed4f6d0644deb0802d4d421814ad13ce89a /ipalib/plugins/privilege.py | |
parent | 388c9a1705bd3e6744ca996559cb4372c532056e (diff) | |
download | freeipa-b5e43bb866392a70d775f31994f7e856972956b2.tar.gz freeipa-b5e43bb866392a70d775f31994f7e856972956b2.tar.xz freeipa-b5e43bb866392a70d775f31994f7e856972956b2.zip |
Make permission and privilege help text clearer
ticket 996
Diffstat (limited to 'ipalib/plugins/privilege.py')
-rw-r--r-- | ipalib/plugins/privilege.py | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/ipalib/plugins/privilege.py b/ipalib/plugins/privilege.py index 0b451635e..3be466483 100644 --- a/ipalib/plugins/privilege.py +++ b/ipalib/plugins/privilege.py @@ -19,11 +19,20 @@ """ Privileges -A privilege enables fine-grained delegation of permissions. Access Control -Rules, or instructions (ACIs), grant permission to privileges to perform -given tasks such as adding a user, modifying a group, etc. +A privilege combines permissions into a logical task. A permission provides +the rights to do a single task. There are some IPA operations that require +multiple permissions to succeed. A privilege is where permissions are +combined in order to perform a specific task. -A privilege may not be members of other privileges. +For example, adding a user requires the following permissions: + * Creating a new user entry + * Resetting a user password + * Adding the new user to the default IPA users group + +Combining these three low-level tasks into a higher level task in the +form of a privilege named "Add User" makes it easier to manage Roles. + +A privilege may not contain other privileges. See role and permission for additional information. """ |