bifrost/playbooks/roles/bifrost-ironic-install/files/ironic_policy.te
Yolanda Robla 53c7656d65 Fix bug in ironic policy
Change-Id: Ib25797f02fc2dc51912c05cd3e5b4a540ba4e5d5
2017-08-30 16:38:21 +02:00

20 lines
451 B
Plaintext

module ironic_policy 1.0;
require {
type httpd_t;
type root_t;
type default_t;
class file open;
class file read;
class file getattr;
}
#============= httpd_t ==============
#!!!! This avc can be allowed using the boolean 'daemons_dump_core'
allow httpd_t root_t:file open;
allow httpd_t default_t:file open;
allow httpd_t root_t:file { read getattr };
allow httpd_t default_t:file { read getattr };