2005-10-22 22:51:01 +00:00
|
|
|
## <summary>RADIUS authentication and accounting server.</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2006-08-15 20:00:58 +00:00
|
|
|
## Use radius over a UDP connection. (Deprecated)
|
2005-10-22 22:51:01 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-10-22 22:51:01 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-10-22 22:51:01 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`radius_use',`
|
2006-08-15 20:00:58 +00:00
|
|
|
refpolicywarn(`$0($*) has been deprecated.')
|
2005-10-22 22:51:01 +00:00
|
|
|
')
|
2008-02-07 16:37:47 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## All of the rules required to administrate
|
|
|
|
## an radius environment
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`radius_admin',`
|
|
|
|
gen_require(`
|
2008-05-15 13:10:34 +00:00
|
|
|
type radiusd_t, radiusd_etc_t, radiusd_log_t;
|
|
|
|
type radiusd_etc_rw_t, radiusd_var_lib_t, radiusd_var_run_t;
|
2008-02-07 16:37:47 +00:00
|
|
|
')
|
|
|
|
|
2008-05-15 13:10:34 +00:00
|
|
|
allow $1 radiusd_t:process { ptrace signal_perms getattr };
|
|
|
|
ps_process_pattern($1, radiusd_t)
|
2008-02-07 16:37:47 +00:00
|
|
|
|
|
|
|
files_list_etc($1)
|
2008-05-15 13:10:34 +00:00
|
|
|
manage_files_pattern($1, radiusd_etc_t, radiusd_etc_t)
|
2008-02-07 16:37:47 +00:00
|
|
|
|
|
|
|
logging_list_logs($1)
|
2008-05-15 13:10:34 +00:00
|
|
|
manage_files_pattern($1, radiusd_log_t, radiusd_log_t)
|
2008-02-07 16:37:47 +00:00
|
|
|
|
2008-05-15 13:10:34 +00:00
|
|
|
manage_files_pattern($1, radiusd_etc_rw_t, radiusd_etc_rw_t)
|
2008-02-07 16:37:47 +00:00
|
|
|
|
|
|
|
files_list_var_lib($1)
|
2008-05-15 13:10:34 +00:00
|
|
|
manage_files_pattern($1, radiusd_var_lib_t, radiusd_var_lib_t)
|
2008-02-07 16:37:47 +00:00
|
|
|
|
|
|
|
files_list_pids($1)
|
2008-05-15 13:10:34 +00:00
|
|
|
manage_files_pattern($1, radiusd_var_run_t, radiusd_var_run_t)
|
2008-02-07 16:37:47 +00:00
|
|
|
')
|