Compare commits

..

No commits in common. "6c46a924b97ee0236e34176fc721e0d391f6dff6" and "f48515aad3f253fd7f8a2830b42b0bd0fa6cd727" have entirely different histories.

4 changed files with 4 additions and 6 deletions

View file

@ -1,2 +0,0 @@
trivial:
- "Fix integration tests so they work with ansible-core devel / 2.16 (https://github.com/ansible-collections/ansible.posix/pull/466)."

View file

@ -17,7 +17,7 @@
- block: - block:
- include_tasks: acl.yml - include: acl.yml
when: ansible_system == 'Linux' # TODO enable acls mount option on FreeBSD to test it there too when: ansible_system == 'Linux' # TODO enable acls mount option on FreeBSD to test it there too
always: always:

View file

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
- include_tasks: seboolean.yml - include: seboolean.yml
when: when:
- ansible_selinux is defined - ansible_selinux is defined
- ansible_selinux != False - ansible_selinux != False

View file

@ -23,13 +23,13 @@
msg: SELinux is {{ ansible_selinux.status }} msg: SELinux is {{ ansible_selinux.status }}
when: ansible_selinux is defined and ansible_selinux != False when: ansible_selinux is defined and ansible_selinux != False
- include_tasks: selinux.yml - include: selinux.yml
when: when:
- ansible_selinux is defined - ansible_selinux is defined
- ansible_selinux != False - ansible_selinux != False
- ansible_selinux.status == 'enabled' - ansible_selinux.status == 'enabled'
- include_tasks: selogin.yml - include: selogin.yml
when: when:
- ansible_selinux is defined - ansible_selinux is defined
- ansible_selinux != False - ansible_selinux != False