selinux-policy/policy/modules/services/oav.if

47 lines
973 B
Plaintext
Raw Normal View History

2006-05-02 19:42:04 +00:00
## <summary>Open AntiVirus scannerdaemon and signature update</summary>
########################################
## <summary>
## Execute oav_update in the oav_update domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`oav_domtrans_update',`
gen_require(`
type oav_update_t, oav_update_exec_t;
')
2007-03-23 23:24:59 +00:00
corecmd_search_bin($1)
domtrans_pattern($1, oav_update_exec_t, oav_update_t)
2006-05-02 19:42:04 +00:00
')
########################################
## <summary>
## Execute oav_update in the oav_update domain, and
## allow the specified role the oav_update domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <param name="role">
## <summary>
## The role to be allowed the oav_update domain.
## </summary>
## </param>
2006-09-06 22:07:25 +00:00
## <rolecap/>
2006-05-02 19:42:04 +00:00
#
interface(`oav_run_update',`
gen_require(`
type oav_update_t;
')
oav_domtrans_update($1)
role $2 types oav_update_t;
')