## APC UPS monitoring daemon ######################################## ## ## Execute a domain transition to run apcupsd. ## ## ## ## Domain allowed to transition. ## ## # interface(`apcupsd_domtrans',` gen_require(` type apcupsd_t, apcupsd_exec_t; ') domtrans_pattern($1, apcupsd_exec_t, apcupsd_t) ') ######################################## ## ## Read apcupsd PID files. ## ## ## ## Domain allowed access. ## ## # 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; ') ######################################## ## ## Allow the specified domain to read apcupsd's log files. ## ## ## ## Domain allowed access. ## ## ## # 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 }; ') ######################################## ## ## Allow the specified domain to append ## apcupsd log files. ## ## ## ## Domain allowed to transition. ## ## # interface(`apcupsd_append_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 { getattr append }; ') ######################################## ## ## Execute a domain transition to run httpd_apcupsd_cgi_script. ## ## ## ## Domain allowed to transition. ## ## # interface(`httpd_apcupsd_cgi_script_domtrans',` gen_require(` type httpd_apcupsd_cgi_script_t, httpd_apcupsd_cgi_script_exec_t; ') domtrans_pattern($1, httpd_apcupsd_cgi_script_exec_t, httpd_apcupsd_cgi_script_t) ')