## policy for ncftool
########################################
##
## Execute a domain transition to run ncftool.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`ncftool_domtrans',`
gen_require(`
type ncftool_t, ncftool_exec_t;
')
domtrans_pattern($1, ncftool_exec_t, ncftool_t)
')
########################################
##
## Execute ncftool in the ncftool domain, and
## allow the specified role the ncftool domain.
##
##
##
## Domain allowed access
##
##
##
##
## The role to be allowed the ncftool domain.
##
##
#
interface(`ncftool_run',`
gen_require(`
type ncftool_t;
')
ncftool_domtrans($1)
role $2 types ncftool_t;
optional_policy(`
brctl_run(ncftool_t, $2)
')
')
########################################
##
## Role access for ncftool
##
##
##
## Role allowed access
##
##
##
##
## User domain for the role
##
##
#
interface(`ncftool_role',`
gen_require(`
type ncftool_t;
')
role $1 types ncftool_t;
ncftool_domtrans($2)
ps_process_pattern($2, ncftool_t)
allow $2 ncftool_t:process signal;
')