## Abstract Machine Test Utility.
########################################
##
## Execute a domain transition to run Amtu.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`amtu_domtrans',`
gen_require(`
type amtu_t, amtu_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, amtu_exec_t, amtu_t)
')
########################################
##
## Execute a domain transition to run
## Amtu, and allow the specified role
## the Amtu domain.
##
##
##
## Domain allowed to transition.
##
##
##
##
## Role allowed access.
##
##
#
interface(`amtu_run',`
gen_require(`
type amtu_t;
')
amtu_domtrans($1)
role $2 types amtu_t;
')