Refine AIDE update command error handling based on return codes
Ansible Lint / ansible_lint (map[ansible:2.16.* ansible_lint:24.* python:3.12]) (push) Failing after 45s
Ansible Lint / ansible_lint (map[ansible:2.20.* ansible_lint:26.* python:3.13]) (push) Failing after 49s
Check for ansible_managed variable use in comments / ansible_managed_var_comment (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-14 python:3.9]) (push) Failing after 5s
Ansible Test / ansible_test (map[ansible:2-16 python:3.11]) (push) Failing after 5s
Ansible Test / ansible_test (map[ansible:2-17 python:3.12]) (push) Failing after 5s
Ansible Test / ansible_test (map[ansible:2-18 python:3.12]) (push) Failing after 4s
Ansible Test / ansible_test (map[ansible:2-19 python:3.13]) (push) Failing after 5s
Ansible Test / ansible_test (map[ansible:2-20 python:3.13]) (push) Failing after 5s
Ansible Test / ansible_test (map[ansible:milestone python:3.13]) (push) Failing after 4s
Markdown Lint / markdownlint (push) Failing after 40s
Test / scenario (map[env:container-ansible-core-2-16 image:centos-9-bootc]) (push) Failing after 42s
Test / scenario (map[env:container-ansible-core-2-16 image:centos-9]) (push) Failing after 45s
Test / scenario (map[env:container-ansible-core-2-17 image:centos-10-bootc]) (push) Failing after 39s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-43-bootc]) (push) Failing after 42s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-43]) (push) Failing after 34s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-44-bootc]) (push) Failing after 28s
Test / scenario (map[env:container-ansible-core-2-21 image:fedora-44]) (push) Failing after 30s
Test / scenario (map[env:qemu-ansible-core-2-16 image:centos-9]) (push) Failing after 37s
Test / scenario (map[env:qemu-ansible-core-2-17 image:centos-10]) (push) Failing after 31s
Test / scenario (map[env:qemu-ansible-core-2-18 image:leap-15.6]) (push) Failing after 30s
Test / scenario (map[env:qemu-ansible-core-2-20 image:fedora-43]) (push) Failing after 42s
Test / scenario (map[env:qemu-ansible-core-2-21 image:fedora-44]) (push) Failing after 37s
ShellCheck / shellcheck (push) Failing after 50s
Test converting README.md to README.html / test_converting_readme (push) Failing after 41s

This commit is contained in:
2026-07-27 20:32:10 +02:00
parent 823b51fa36
commit aadd117d01
+2 -5
View File
@@ -121,11 +121,8 @@
ansible.builtin.command:
cmd: aide --update
register: __aide_update_result
failed_when: __msg not in __aide_update_result.stdout
changed_when: true
vars:
__msg: >-
AIDE found NO differences between database and filesystem. Looks okay!!
changed_when: __aide_update_result.rc > 1 and __aide_update_result.rc <= 7
failed_when: __aide_update_result.rc >= 14
- name: Fetch AIDE database
ansible.builtin.fetch: