6df48a42f2
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/mariadb#4e960545a8a5fc83de7c79818a01beeb08c51d6b
24 lines
681 B
Plaintext
24 lines
681 B
Plaintext
|
|
module mariadb-server-galera 1.0;
|
|
|
|
require {
|
|
type mysqld_t;
|
|
type rsync_exec_t;
|
|
type anon_inodefs_t;
|
|
type proc_net_t;
|
|
type kerberos_port_t;
|
|
class file { read execute execute_no_trans getattr open };
|
|
class tcp_socket { name_bind name_connect };
|
|
class process { setpgid siginh rlimitinh noatsecure };
|
|
}
|
|
|
|
# allow mysqld to run rsyncd
|
|
allow mysqld_t self:process setpgid;
|
|
allow mysqld_t rsync_exec_t:file { read execute execute_no_trans getattr open };
|
|
allow mysqld_t anon_inodefs_t:file getattr;
|
|
allow mysqld_t proc_net_t:file { read open };
|
|
|
|
# allow rsyncd to listen on port 4444
|
|
allow mysqld_t kerberos_port_t:tcp_socket { name_bind name_connect };
|
|
|