Skip to content
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.

Commit

Permalink
feat: selinux support nova_t and neutron_t #177697
Browse files Browse the repository at this point in the history
Add SELinux support for openstack

Related work items: #177697
  • Loading branch information
rali-bt authored and rbest-bt committed Apr 9, 2019
1 parent 1df5d62 commit b1ffc87
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
Binary file modified config/linux/redhat/rhel/6.0/pbis.pp
Binary file not shown.
18 changes: 17 additions & 1 deletion config/linux/redhat/rhel/6.0/pbis.te
@@ -1,5 +1,5 @@

module pbis 8.5.2;
module pbis 9.0.1;

require {
type unconfined_t;
Expand Down Expand Up @@ -472,3 +472,19 @@ pbis_client(xdm_dbusd_t)
pbis_client(xfs_t)
pbis_client(xserver_t)
pbis_client(zos_remote_t)


optional {
require {
type nova_t;
}
pbis_client(nova_t)
}

optional {
require {
type neutron_t;
}
pbis_client(neutron_t)
}

Binary file modified config/linux/redhat/rhel/7.0/pbis.pp
Binary file not shown.
19 changes: 18 additions & 1 deletion config/linux/redhat/rhel/7.0/pbis.te
@@ -1,5 +1,5 @@

module pbis 8.5.2;
module pbis 9.0.1;

require {
type abrt_t;
Expand Down Expand Up @@ -295,6 +295,7 @@ require {
type zos_remote_t;
}


pbis_client(accountsd_t)
pbis_client(abrt_t)
pbis_client(alsa_t)
Expand Down Expand Up @@ -474,3 +475,19 @@ pbis_client(xdm_t)
pbis_client(xdm_dbusd_t)
pbis_client(xserver_t)
pbis_client(zos_remote_t)

optional {
require {
type nova_t;
}
pbis_client(nova_t)
}

optional {
require {
type neutron_t;
}
pbis_client(neutron_t)
}


0 comments on commit b1ffc87

Please sign in to comment.