## Generic unprivileged user role
########################################
##
## Change to the generic user role.
##
##
##
## Role allowed access.
##
##
##
#
interface(`unprivuser_role_change',`
gen_require(`
role user_r;
')
allow $1 user_r;
')
########################################
##
## Change from the generic user role.
##
##
##
## Change from the generic user 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(`unprivuser_role_change_to',`
gen_require(`
role user_r;
')
allow user_r $1;
')