![]() | ![]() |
Home |
|
|
Reference Manual: Commands |
|
| Chapter 1 Commands |
|
| alter role |
|
| Examples |
Example 1
Defines intern_role and specialist_role as mutually exclusive:
alter role intern_role add exclusive membership specialist_role
Example 2
Defines roles as mutually exclusive at the membership level and at the activation level:
alter role specialist_role add exclusive membership intern_role alter role intern_role add exclusive activation surgeon_role
Example 3
Adds a password to an existing role:
alter role doctor_role add passwd "physician"
Example 4
Drops a password from an existing role:
alter role doctor_role drop passwd
Example 5
Locks the role physician_role:
alter role physician_role lock
Example 6
Unlocks the role physician_role:
alter role physician_role unlock
Example 7
Changes the maximum number of failed logins allowed for physician_role to 5:
alter role physician_role set max failed_logins 5
Example 8
Sets the minimum password length for physician_role, an existing role, to five characters:
alter role physician_role set min passwd length 5
Example 9
Overrides the minimum password length of all roles:
alter role "all overrides" set min passwd length -1
Example 10
Removes the overrides for the maximum failed logins for all roles:
alter role "all overrides" set max failed_logins -1
|
|