podman: Fix reading certificates

This commit is contained in:
Timo Makinen 2022-07-10 14:14:14 +00:00
parent 4f5513e05e
commit 5f8371eb12
2 changed files with 2 additions and 3 deletions

Binary file not shown.

View file

@ -4,9 +4,8 @@ module podman-certs 1.0;
require {
type cert_t;
type container_t;
class file { open read };
class file { getattr open read };
}
#============= container_t ==============
allow container_t cert_t:file read;
allow container_t cert_t:file open;
allow container_t cert_t:file { getattr open read };