Whitespace fixes in RPM.

This commit is contained in:
Chris PeBenito 2010-07-08 10:12:24 -04:00
parent 7e265a8abb
commit 2d839c6791

View File

@ -245,22 +245,22 @@ interface(`rpm_search_log',`
##################################### #####################################
## <summary> ## <summary>
## Allow the specified domain to append ## Allow the specified domain to append
## to rpm log files. ## to rpm log files.
## </summary> ## </summary>
## <param name="domain"> ## <param name="domain">
## <summary> ## <summary>
## Domain allowed access. ## Domain allowed access.
## </summary> ## </summary>
## </param> ## </param>
# #
interface(`rpm_append_log',` interface(`rpm_append_log',`
gen_require(` gen_require(`
type rpm_log_t; type rpm_log_t;
') ')
logging_search_logs($1) logging_search_logs($1)
append_files_pattern($1, rpm_log_t, rpm_log_t) append_files_pattern($1, rpm_log_t, rpm_log_t)
') ')
######################################## ########################################
@ -322,22 +322,22 @@ interface(`rpm_manage_script_tmp_files',`
##################################### #####################################
## <summary> ## <summary>
## Allow the specified domain to append ## Allow the specified domain to append
## to rpm tmp files. ## to rpm tmp files.
## </summary> ## </summary>
## <param name="domain"> ## <param name="domain">
## <summary> ## <summary>
## Domain allowed access. ## Domain allowed access.
## </summary> ## </summary>
## </param> ## </param>
# #
interface(`rpm_append_tmp_files',` interface(`rpm_append_tmp_files',`
gen_require(` gen_require(`
type rpm_tmp_t; type rpm_tmp_t;
') ')
files_search_tmp($1) files_search_tmp($1)
append_files_pattern($1, rpm_tmp_t, rpm_tmp_t) append_files_pattern($1, rpm_tmp_t, rpm_tmp_t)
') ')
######################################## ########################################
@ -482,7 +482,7 @@ interface(`rpm_manage_db',`
######################################## ########################################
## <summary> ## <summary>
## Do not audit attempts to create, read, ## Do not audit attempts to create, read,
## write, and delete the RPM package database. ## write, and delete the RPM package database.
## </summary> ## </summary>
## <param name="domain"> ## <param name="domain">
@ -503,56 +503,56 @@ interface(`rpm_dontaudit_manage_db',`
##################################### #####################################
## <summary> ## <summary>
## Read rpm pid files. ## Read rpm pid files.
## </summary> ## </summary>
## <param name="domain"> ## <param name="domain">
## <summary> ## <summary>
## Domain allowed access. ## Domain allowed access.
## </summary> ## </summary>
## </param> ## </param>
# #
interface(`rpm_read_pid_files',` interface(`rpm_read_pid_files',`
gen_require(` gen_require(`
type rpm_var_run_t; type rpm_var_run_t;
') ')
read_files_pattern($1,rpm_var_run_t,rpm_var_run_t) read_files_pattern($1, rpm_var_run_t, rpm_var_run_t)
files_search_pids($1) files_search_pids($1)
') ')
##################################### #####################################
## <summary> ## <summary>
## Create, read, write, and delete rpm pid files. ## Create, read, write, and delete rpm pid files.
## </summary> ## </summary>
## <param name="domain"> ## <param name="domain">
## <summary> ## <summary>
## Domain allowed access. ## Domain allowed access.
## </summary> ## </summary>
## </param> ## </param>
# #
interface(`rpm_manage_pid_files',` interface(`rpm_manage_pid_files',`
gen_require(` gen_require(`
type rpm_var_run_t; type rpm_var_run_t;
') ')
manage_files_pattern($1,rpm_var_run_t,rpm_var_run_t) manage_files_pattern($1, rpm_var_run_t, rpm_var_run_t)
files_search_pids($1) files_search_pids($1)
') ')
###################################### ######################################
## <summary> ## <summary>
## Create files in /var/run with the rpm pid file type. ## Create files in /var/run with the rpm pid file type.
## </summary> ## </summary>
## <param name="domain"> ## <param name="domain">
## <summary> ## <summary>
## Domain allowed access. ## Domain allowed access.
## </summary> ## </summary>
## </param> ## </param>
# #
interface(`rpm_pid_filetrans',` interface(`rpm_pid_filetrans',`
gen_require(` gen_require(`
type rpm_var_run_t; type rpm_var_run_t;
') ')
files_pid_filetrans($1, rpm_var_run_t, file) files_pid_filetrans($1, rpm_var_run_t, file)
') ')