2018-06-23 13:00:56 +00:00
|
|
|
## <summary>Open source implementation of the Service Availability Forum Hardware Platform Interface.</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## All of the rules required to
|
|
|
|
## administrate an openhpi environment.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
|
|
|
## Role allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`openhpi_admin',`
|
|
|
|
gen_require(`
|
|
|
|
type openhpid_t, openhpid_initrc_exec_t, openhpid_var_lib_t;
|
2019-09-08 20:55:02 +00:00
|
|
|
type openhpid_runtime_t;
|
2018-06-23 13:00:56 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 openhpid_t:process { ptrace signal_perms };
|
|
|
|
ps_process_pattern($1, openhpid_t)
|
|
|
|
|
|
|
|
init_startstop_service($1, $2, openhpid_t, openhpid_initrc_exec_t)
|
|
|
|
|
|
|
|
files_search_var_lib($1)
|
|
|
|
admin_pattern($1, openhpid_var_lib_t)
|
|
|
|
|
2020-06-27 21:11:48 +00:00
|
|
|
files_search_runtime($1)
|
2019-09-08 20:55:02 +00:00
|
|
|
admin_pattern($1, openhpid_runtime_t)
|
2018-06-23 13:00:56 +00:00
|
|
|
')
|