blob: a2c2084b37b0d8ab4f46c034bb9adea689c169ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
policy_module(aide, 1.5.0)
########################################
#
# Declarations
#
type aide_t;
type aide_exec_t;
application_domain(aide_t, aide_exec_t)
# log files
type aide_log_t;
logging_log_file(aide_log_t)
# aide database
type aide_db_t;
files_type(aide_db_t)
########################################
#
# aide local policy
#
allow aide_t self:capability { dac_override fowner };
# database actions
manage_files_pattern(aide_t, aide_db_t, aide_db_t)
# logs
manage_files_pattern(aide_t, aide_log_t, aide_log_t)
logging_log_filetrans(aide_t, aide_log_t, file)
files_read_all_files(aide_t)
logging_send_audit_msgs(aide_t)
seutil_use_newrole_fds(aide_t)
userdom_use_user_terminals(aide_t)
|