## System backup scripts
########################################
##
## Execute backup in the backup domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`backup_domtrans',`
gen_require(`
type backup_t, backup_exec_t;
')
domain_auto_trans($1,backup_exec_t,backup_t)
allow backup_t $1:fd use;
allow backup_t $1:fifo_file rw_file_perms;
allow backup_t $1:process sigchld;
')
########################################
##
## Execute backup in the backup domain, and
## allow the specified role the backup domain.
##
##
##
## The type of the process performing this action.
##
##
##
##
## The role to be allowed the backup domain.
##
##
##
##
## Domain allowed access.
##
##
#
interface(`backup_run',`
gen_require(`
type backup_t;
')
backup_domtrans($1)
role $2 types backup_t;
allow backup_t $3:chr_file rw_term_perms;
')