48 lines
1018 B
Plaintext
48 lines
1018 B
Plaintext
## <summary>Policy for Aimee OS utilities.</summary>
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute system-update in the aimee_sysupdate_t
|
|
## domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed to transition.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`aimee_os_system_update_domtrans',`
|
|
gen_require(`
|
|
type aimee_sysupdate_t, aimee_sysupdate_exec_t;
|
|
')
|
|
|
|
domtrans_pattern($1, aimee_sysupdate_exec_t, aimee_sysupdate_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute system-update in the aimee_sysupdate_t
|
|
## domain, and allow the specified role the
|
|
## aimee_sysupdate_t domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed to transition.
|
|
## </summary>
|
|
## </param>
|
|
## <param name="role">
|
|
## <summary>
|
|
## Role allowed access.
|
|
## </summary>
|
|
## </param>
|
|
## <rolecap/>
|
|
#
|
|
interface(`aimee_os_run_system_update',`
|
|
gen_require(`
|
|
type aimee_sysupdate_t;
|
|
')
|
|
|
|
aimee_os_system_update_domtrans($1)
|
|
role $2 types aimee_sysupdate_t;
|
|
')
|