selinux-refpolicy/policy/modules/services/apcupsd.if

82 lines
1.6 KiB
Plaintext
Raw Normal View History

2007-05-07 14:55:54 +00:00
## <summary>APC UPS monitoring daemon</summary>
########################################
## <summary>
## Execute a domain transition to run apcupsd.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
#
interface(`apcupsd_domtrans',`
gen_require(`
type apcupsd_t, apcupsd_exec_t;
')
domtrans_pattern($1,apcupsd_exec_t,apcupsd_t)
')
########################################
## <summary>
## Read apcupsd PID files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`apcupsd_read_pid_files',`
gen_require(`
type apcupsd_var_run_t;
')
files_search_pids($1)
allow $1 apcupsd_var_run_t:file read_file_perms;
')
########################################
## <summary>
## Allow the specified domain to read apcupsd's log files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`apcupsd_read_log',`
gen_require(`
type apcupsd_log_t;
')
logging_search_logs($1)
allow $1 apcupsd_log_t:dir list_dir_perms;
allow $1 apcupsd_log_t:file { read getattr lock };
')
########################################
## <summary>
## Allow the specified domain to append
## apcupsd log files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
#
interface(`apcupsd_append_log',`
gen_require(`
type var_log_t, apcupsd_log_t;
')
logging_search_logs($1)
allow $1 apcupsd_log_t:dir list_dir_perms;
allow $1 apcupsd_log_t:file { getattr append };
')