2010-08-26 15:03:50 +00:00
|
|
|
## <summary>Advanced Maryland Automatic Network Disk Archiver.</summary>
|
2005-10-22 22:51:01 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Execute a domain transition to
|
|
|
|
## run Amanda Recover.
|
2005-10-22 22:51:01 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed to transition.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-10-22 22:51:01 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`amanda_domtrans_recover',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_recover_t, amanda_recover_exec_t;
|
|
|
|
')
|
|
|
|
|
2008-07-23 21:38:39 +00:00
|
|
|
domtrans_pattern($1, amanda_recover_exec_t, amanda_recover_t)
|
2010-08-26 15:03:50 +00:00
|
|
|
corecmd_search_bin($1)
|
2005-10-22 22:51:01 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Execute a domain transition to
|
|
|
|
## run Amanda Recover and allow the
|
|
|
|
## specified role the Amanda Recover
|
|
|
|
## domain.
|
2005-10-22 22:51:01 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed to transition.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-10-22 22:51:01 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-03 13:20:22 +00:00
|
|
|
## Role allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-10-22 22:51:01 +00:00
|
|
|
## </param>
|
2006-09-06 22:07:25 +00:00
|
|
|
## <rolecap/>
|
2005-10-22 22:51:01 +00:00
|
|
|
#
|
|
|
|
interface(`amanda_run_recover',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_recover_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
amanda_domtrans_recover($1)
|
|
|
|
role $2 types amanda_recover_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Search Amanda lib directories.
|
2005-10-22 22:51:01 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-02 13:22:09 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-10-22 22:51:01 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`amanda_search_lib',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_usr_lib_t;
|
|
|
|
')
|
|
|
|
|
2006-12-12 20:08:08 +00:00
|
|
|
allow $1 amanda_usr_lib_t:dir search_dir_perms;
|
2005-10-22 22:51:01 +00:00
|
|
|
files_search_usr($1)
|
2010-08-26 15:03:50 +00:00
|
|
|
libs_search_lib($1)
|
2005-10-22 22:51:01 +00:00
|
|
|
')
|
2005-12-01 22:53:20 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Do not audit attempts to read
|
|
|
|
## dumpdates files.
|
2005-12-01 22:53:20 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-12-01 22:53:20 +00:00
|
|
|
## Domain to not audit.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-12-01 22:53:20 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`amanda_dontaudit_read_dumpdates',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_dumpdates_t;
|
|
|
|
')
|
|
|
|
|
2010-08-26 15:03:50 +00:00
|
|
|
dontaudit $1 amanda_dumpdates_t:file read_file_perms;
|
2005-12-01 22:53:20 +00:00
|
|
|
')
|
2006-02-20 16:31:54 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Read and write dumpdates files.
|
2006-02-20 16:31:54 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed access.
|
2006-02-20 16:31:54 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`amanda_rw_dumpdates_files',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_dumpdates_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 amanda_dumpdates_t:file rw_file_perms;
|
2010-08-26 15:03:50 +00:00
|
|
|
files_search_etc($1)
|
2006-02-20 16:31:54 +00:00
|
|
|
')
|
2006-12-04 20:10:56 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Search Amanda lib directories.
|
2006-12-04 20:10:56 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-02 13:22:09 +00:00
|
|
|
## Domain allowed access.
|
2006-12-04 20:10:56 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`amanda_manage_lib',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_usr_lib_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 amanda_usr_lib_t:dir manage_dir_perms;
|
|
|
|
files_search_usr($1)
|
2010-08-26 15:03:50 +00:00
|
|
|
libs_search_lib($1)
|
2006-12-04 20:10:56 +00:00
|
|
|
')
|
|
|
|
|
2006-02-20 16:31:54 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Read and write Amanda logs.
|
2006-02-20 16:31:54 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed access.
|
2006-02-20 16:31:54 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`amanda_append_log_files',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_log_t;
|
|
|
|
')
|
|
|
|
|
2006-12-12 20:08:08 +00:00
|
|
|
allow $1 amanda_log_t:file { read_file_perms append_file_perms };
|
2010-08-26 15:03:50 +00:00
|
|
|
logging_search_logs($1)
|
2006-02-20 16:31:54 +00:00
|
|
|
')
|
2007-10-12 17:35:56 +00:00
|
|
|
|
|
|
|
#######################################
|
|
|
|
## <summary>
|
2010-08-26 15:03:50 +00:00
|
|
|
## Search Amanda lib directories.
|
2007-10-12 17:35:56 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
2010-08-02 13:22:09 +00:00
|
|
|
## Domain allowed access.
|
2007-10-12 17:35:56 +00:00
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`amanda_search_var_lib',`
|
|
|
|
gen_require(`
|
|
|
|
type amanda_var_lib_t;
|
|
|
|
')
|
|
|
|
|
2010-08-26 15:02:44 +00:00
|
|
|
allow $1 amanda_var_lib_t:dir search_dir_perms;
|
2010-08-26 15:03:50 +00:00
|
|
|
files_search_var_lib($1)
|
2007-10-12 17:35:56 +00:00
|
|
|
')
|