selinux-policy/policy/modules/apps/webalizer.if
Dominick Grift 03b86663f0 apps: domain { allowed to transition, allowed access, to not audit }.
Signed-off-by: Dominick Grift <domg472@gmail.com>
2010-08-05 08:20:59 -04:00

46 lines
898 B
Plaintext

## <summary>Web server log analysis</summary>
########################################
## <summary>
## Execute webalizer in the webalizer domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
#
interface(`webalizer_domtrans',`
gen_require(`
type webalizer_t, webalizer_exec_t;
')
domtrans_pattern($1, webalizer_exec_t, webalizer_t)
')
########################################
## <summary>
## Execute webalizer in the webalizer domain, and
## allow the specified role the webalizer domain.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`webalizer_run',`
gen_require(`
type webalizer_t;
')
webalizer_domtrans($1)
role $2 types webalizer_t;
')