2007-09-17 17:25:40 +00:00
|
|
|
## <summary>
|
|
|
|
## AWStats is a free powerful and featureful tool that generates advanced
|
|
|
|
## web, streaming, ftp or mail server statistics, graphically.
|
|
|
|
## </summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2008-12-03 19:16:20 +00:00
|
|
|
## Read and write awstats unnamed pipes.
|
2007-09-17 17:25:40 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2008-12-03 19:16:20 +00:00
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
2007-09-17 17:25:40 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`awstats_rw_pipes',`
|
|
|
|
gen_require(`
|
|
|
|
type awstats_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 awstats_t:fifo_file rw_fifo_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2008-12-03 19:16:20 +00:00
|
|
|
## Execute awstats cgi scripts in the caller domain.
|
2007-09-17 17:25:40 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2008-12-03 19:16:20 +00:00
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
2007-09-17 17:25:40 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`awstats_cgi_exec',`
|
|
|
|
gen_require(`
|
2008-07-23 21:38:39 +00:00
|
|
|
type httpd_awstats_script_exec_t, httpd_awstats_content_t;
|
2007-09-17 17:25:40 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 httpd_awstats_content_t:dir search_dir_perms;
|
|
|
|
allow $1 httpd_awstats_script_exec_t:dir search_dir_perms;
|
2008-07-23 21:38:39 +00:00
|
|
|
can_exec($1, httpd_awstats_script_exec_t)
|
2007-09-17 17:25:40 +00:00
|
|
|
')
|