## Administrator's unprivileged user
########################################
##
## Change to the staff role.
##
##
##
## Role allowed access.
##
##
##
#
interface(`staff_role_change',`
gen_require(`
role staff_r;
')
allow $1 staff_r;
')
########################################
##
## Change from the staff role.
##
##
##
## Change from the staff role to
## the specified role.
##
##
## This is an interface to support third party modules
## and its use is not allowed in upstream reference
## policy.
##
##
##
##
## Role allowed access.
##
##
##
#
interface(`staff_role_change_to',`
gen_require(`
role staff_r;
')
allow staff_r $1;
')