diff --git a/roles/base/tasks/main.yml b/roles/base/tasks/main.yml index c1e5fcc..c8a7c4b 100644 --- a/roles/base/tasks/main.yml +++ b/roles/base/tasks/main.yml @@ -1,10 +1,4 @@ --- - - name: This module has only been tested on RHEL 7.3 x64 - assert: - that: - - "ansible_userspace_bits == '64'" - - "ansible_os_family == 'RedHat'" - - "ansible_distribution_version == '7.3'" - name: Tell SSHD not to use DNS lineinfile: dest=/etc/ssh/sshd_config regexp="^#* *UseDNS +" line="UseDNS no" diff --git a/roles/openshift-prereq/tasks/main.yml b/roles/openshift-prereq/tasks/main.yml index de30c34..22539f4 100644 --- a/roles/openshift-prereq/tasks/main.yml +++ b/roles/openshift-prereq/tasks/main.yml @@ -1,12 +1,5 @@ --- - - name: This module has only been tested on RHEL 7.3 x64 - assert: - that: - - "ansible_userspace_bits == '64'" - - "ansible_os_family == 'RedHat'" - - "ansible_distribution_version == '7.3'" - - name: Install iptables-services yum: name=iptables-services state=installed tags: rpm