Oreon-Lime-R2/selinux-policy/selinux-policy-bc228bd/selinux-policy-bc228bd0c249a9e4aa3dcf238c2b1bb138943b07/policy/modules/roles/staff.if

67 lines
1.1 KiB
Text
Raw Normal View History

## <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;
')