Oreon-Lime-R2/selinux-policy/selinux-policy-d9f4a2b/selinux-policy-d9f4a2bbeb91fd95d0c35a90936efb9ea99d2455/policy/modules/roles/staff.if

66 lines
1.1 KiB
Text

## <summary>Administrator's unprivileged user</summary>
#####################################
## <summary>
## staff stub userdomain interface. No access allowed.
## </summary>
## <param name="domain" unused="true">
## <summary>
## Domain allowed access
## </summary>
## </param>
#
interface(`staff_stub',`
gen_require(`
type staff_t;
')
')
########################################
## <summary>
## Change to the staff role.
## </summary>
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`staff_role_change',`
gen_require(`
role staff_r;
')
allow $1 staff_r;
')
########################################
## <summary>
## Change from the staff role.
## </summary>
## <desc>
## <p>
## Change from the staff role to
## the specified role.
## </p>
## <p>
## This is an interface to support third party modules
## and its use is not allowed in upstream reference
## policy.
## </p>
## </desc>
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`staff_role_change_to',`
gen_require(`
role staff_r;
')
allow staff_r $1;
')