## Yum/Apt Mirroring
########################################
##
## Execute yam in the yam domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`yam_domtrans',`
gen_require(`
type yam_t, yam_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, yam_exec_t, yam_t)
')
########################################
##
## Execute yam in the yam domain, and
## allow the specified role the yam domain.
##
##
##
## Domain allowed access.
##
##
##
##
## The role to be allowed the yam domain.
##
##
##
#
interface(`yam_run',`
gen_require(`
type yam_t;
')
yam_domtrans($1)
role $2 types yam_t;
')
########################################
##
## Read yam content.
##
##
##
## Domain allowed access.
##
##
#
interface(`yam_read_content',`
gen_require(`
type yam_content_t;
')
allow $1 yam_content_t:dir list_dir_perms;
read_files_pattern($1, yam_content_t, yam_content_t)
read_lnk_files_pattern($1, yam_content_t, yam_content_t)
')