## Hardware detection and configuration tools
########################################
##
## Execute kudzu in the kudzu domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`kudzu_domtrans',`
gen_require(`
type kudzu_t, kudzu_exec_t;
')
domtrans_pattern($1, kudzu_exec_t, kudzu_t)
')
########################################
##
## Execute kudzu in the kudzu domain, and
## allow the specified role the kudzu domain.
##
##
##
## Domain allowed to transition.
##
##
##
##
## Role allowed access.
##
##
##
#
interface(`kudzu_run',`
gen_require(`
type kudzu_t;
')
kudzu_domtrans($1)
role $2 types kudzu_t;
')
########################################
##
## Get attributes of kudzu executable.
##
##
##
## Domain allowed access.
##
##
#
# cjp: added for ddcprobe
interface(`kudzu_getattr_exec_files',`
gen_require(`
type kudzu_exec_t;
')
allow $1 kudzu_exec_t:file getattr;
')