Blob Blame History Raw
## <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;
	')

	corecmd_search_bin($1)
	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(`
		attribute_role webalizer_roles;
	')

	webalizer_domtrans($1)
	roleattribute $2 webalizer_roles;
')