## Database administrator role
########################################
##
## Change to the database administrator role.
##
##
##
## Role allowed access.
##
##
##
#
interface(`dbadm_role_change',`
gen_require(`
role dbadm_r;
')
allow $1 dbadm_r;
')
########################################
##
## Change from the database administrator role.
##
##
##
## Change from the web administrator 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(`dbadm_role_change_to',`
gen_require(`
role dbadm_r;
')
allow dbadm_r $1;
')