Merge pull request #540 from saito-hideki/pr/relace_old_fqcn_selogin

[CI] Replaced old selogin FQCN for integration tests

SUMMARY
Some integration test tasks used the old FQCNs of commuinity.general.
This PR will replace old FQCN(community.general.system.selogin)with new cummonity.general.selogin
ISSUE TYPE

CI Tests Pull Request

COMPONENT NAME

ansible.posix.selinux

ADDITIONAL INFORMATION
None
This commit is contained in:
softwarefactory-project-zuul[bot] 2024-03-26 02:59:55 +00:00 committed by GitHub
commit a356bdd3c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@
- name: Attempt to add mapping without 'seuser' - name: Attempt to add mapping without 'seuser'
register: selogin_error register: selogin_error
ignore_errors: true ignore_errors: true
community.general.system.selogin: community.general.selogin:
login: seuser login: seuser
- name: Verify failure - name: Verify failure
ansible.builtin.assert: ansible.builtin.assert:
@ -19,7 +19,7 @@
- false - false
- true - true
- false - false
community.general.system.selogin: community.general.selogin:
login: seuser login: seuser
seuser: staff_u seuser: staff_u
- name: New mapping- verify functionality and check_mode - name: New mapping- verify functionality and check_mode
@ -37,7 +37,7 @@
- false - false
- true - true
- false - false
community.general.system.selogin: community.general.selogin:
login: seuser login: seuser
seuser: user_u seuser: user_u
- name: Changed mapping- verify functionality and check_mode - name: Changed mapping- verify functionality and check_mode
@ -55,7 +55,7 @@
- false - false
- true - true
- false - false
community.general.system.selogin: community.general.selogin:
login: seuser login: seuser
state: absent state: absent
- name: Delete mapping- verify functionality and check_mode - name: Delete mapping- verify functionality and check_mode