## Load keyboard mappings.
########################################
##
## Execute the loadkeys program in
## the loadkeys domain.
##
##
##
## Domain allowed to transition.
##
##
#
interface(`loadkeys_domtrans',`
gen_require(`
type loadkeys_t, loadkeys_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, loadkeys_exec_t, loadkeys_t)
')
########################################
##
## Execute the loadkeys program in
## the loadkeys domain, and allow the
## specified role the loadkeys domain.
##
##
##
## Domain allowed to transition.
##
##
##
##
## Role allowed access.
##
##
##
#
interface(`loadkeys_run',`
gen_require(`
attribute_role loadkeys_roles;
')
loadkeys_domtrans($1)
roleattribute $2 loadkeys_roles;
')
########################################
##
## Execute the loadkeys in the caller domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`loadkeys_exec',`
gen_require(`
type loadkeys_exec_t;
')
corecmd_search_bin($1)
can_exec($1, loadkeys_exec_t)
')