We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4903d8 commit bd93e48Copy full SHA for bd93e48
grafana.te
@@ -109,9 +109,9 @@ optional_policy(`
109
optional_policy(`
110
require {
111
type usr_t;
112
- class file { execute };
+ class file { execute execute_no_trans };
113
}
114
- allow grafana_t usr_t:file execute;
+ allow grafana_t usr_t:file { execute execute_no_trans };
115
')
116
117
@@ -125,6 +125,14 @@ optional_policy(`
125
allow grafana_t postgresql_var_run_t:sock_file write;
126
127
128
+optional_policy(`
129
+ require {
130
+ type autofs_t;
131
+ class dir {getattr};
132
+ }
133
+ allow grafana_t autofs_t:dir getattr;
134
+')
135
+
136
manage_dirs_pattern(grafana_t, grafana_conf_t, grafana_conf_t)
137
manage_files_pattern(grafana_t, grafana_conf_t, grafana_conf_t)
138
0 commit comments