Enable seboolean integration test on RHEL 8.0.

This commit is contained in:
Matt Clay 2019-01-18 13:54:03 -08:00
parent bea698fbc3
commit c7b9ef740c
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,2 @@
needs/root
shippable/posix/group2
skip/rhel8.0

View file

@ -15,11 +15,17 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
- name: install requirements for RHEL
- name: install requirements for RHEL 7 and earlier
package:
name: policycoreutils-python
when:
- ansible_distribution == 'RedHat'
- ansible_distribution == 'RedHat' and ansible_distribution_major_version is version('7', '<=')
- name: install requirements for RHEL 8 and later
package:
name: policycoreutils-python-utils
when:
- ansible_distribution == 'RedHat' and ansible_distribution_major_version is version('8', '>=')
- name: Cleanup
shell: setsebool -P httpd_can_network_connect 0