- Add a separate variable that controls uploading existing AIDE database from the controller node during the check phase.
Ansible Lint / ansible_lint (map[ansible:2.16.* ansible_lint:24.* python:3.12]) (push) Failing after 1m44s
Ansible Lint / ansible_lint (map[ansible:2.20.* ansible_lint:26.* python:3.13]) (push) Failing after 15s
Check for ansible_managed variable use in comments / ansible_managed_var_comment (push) Failing after 5s
Ansible Test / ansible_test (map[ansible:2-14 python:3.9]) (push) Failing after 7s
Ansible Test / ansible_test (map[ansible:2-16 python:3.11]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-17 python:3.12]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-18 python:3.12]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-19 python:3.13]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-20 python:3.13]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:milestone python:3.13]) (push) Failing after 6s
Markdown Lint / markdownlint (push) Successful in 17s
Test / scenario (map[env:container-ansible-core-2-16 image:centos-9-bootc]) (push) Failing after 29s
Test / scenario (map[env:container-ansible-core-2-16 image:centos-9]) (push) Failing after 11s
Test / scenario (map[env:container-ansible-core-2-17 image:centos-10-bootc]) (push) Failing after 10s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-43-bootc]) (push) Failing after 10s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-43]) (push) Failing after 10s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-44-bootc]) (push) Failing after 42s
Test / scenario (map[env:container-ansible-core-2-21 image:fedora-44]) (push) Failing after 46s
Test / scenario (map[env:qemu-ansible-core-2-16 image:centos-9]) (push) Failing after 40s
Test / scenario (map[env:qemu-ansible-core-2-17 image:centos-10]) (push) Failing after 42s
Test / scenario (map[env:qemu-ansible-core-2-18 image:leap-15.6]) (push) Failing after 41s
Test / scenario (map[env:qemu-ansible-core-2-20 image:fedora-43]) (push) Failing after 44s
Test / scenario (map[env:qemu-ansible-core-2-21 image:fedora-44]) (push) Failing after 40s
ShellCheck / shellcheck (push) Failing after 42s
Test converting README.md to README.html / test_converting_readme (push) Failing after 54s
Ansible Lint / ansible_lint (map[ansible:2.16.* ansible_lint:24.* python:3.12]) (push) Failing after 1m44s
Ansible Lint / ansible_lint (map[ansible:2.20.* ansible_lint:26.* python:3.13]) (push) Failing after 15s
Check for ansible_managed variable use in comments / ansible_managed_var_comment (push) Failing after 5s
Ansible Test / ansible_test (map[ansible:2-14 python:3.9]) (push) Failing after 7s
Ansible Test / ansible_test (map[ansible:2-16 python:3.11]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-17 python:3.12]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-18 python:3.12]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-19 python:3.13]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:2-20 python:3.13]) (push) Failing after 6s
Ansible Test / ansible_test (map[ansible:milestone python:3.13]) (push) Failing after 6s
Markdown Lint / markdownlint (push) Successful in 17s
Test / scenario (map[env:container-ansible-core-2-16 image:centos-9-bootc]) (push) Failing after 29s
Test / scenario (map[env:container-ansible-core-2-16 image:centos-9]) (push) Failing after 11s
Test / scenario (map[env:container-ansible-core-2-17 image:centos-10-bootc]) (push) Failing after 10s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-43-bootc]) (push) Failing after 10s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-43]) (push) Failing after 10s
Test / scenario (map[env:container-ansible-core-2-20 image:fedora-44-bootc]) (push) Failing after 42s
Test / scenario (map[env:container-ansible-core-2-21 image:fedora-44]) (push) Failing after 46s
Test / scenario (map[env:qemu-ansible-core-2-16 image:centos-9]) (push) Failing after 40s
Test / scenario (map[env:qemu-ansible-core-2-17 image:centos-10]) (push) Failing after 42s
Test / scenario (map[env:qemu-ansible-core-2-18 image:leap-15.6]) (push) Failing after 41s
Test / scenario (map[env:qemu-ansible-core-2-20 image:fedora-43]) (push) Failing after 44s
Test / scenario (map[env:qemu-ansible-core-2-21 image:fedora-44]) (push) Failing after 40s
ShellCheck / shellcheck (push) Failing after 42s
Test converting README.md to README.html / test_converting_readme (push) Failing after 54s
- Fetch AIDE logs from the latest run to the controller node.
This commit is contained in:
@@ -15,6 +15,9 @@ aide_init: false
|
||||
# Fetch db
|
||||
aide_fetch_db: false
|
||||
|
||||
# Upload db
|
||||
aide_upload_db: false
|
||||
|
||||
# Enable check database phase
|
||||
aide_check: false
|
||||
|
||||
|
||||
+9
-1
@@ -103,7 +103,7 @@
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0440"
|
||||
when: aide_fetch_db | bool
|
||||
when: aide_upload_db | bool
|
||||
|
||||
- name: Check against AIDE reference database
|
||||
ansible.builtin.command:
|
||||
@@ -153,6 +153,14 @@
|
||||
- aide_cron_check is not none
|
||||
- not aide_cron_check | bool
|
||||
|
||||
- name: Fetch AIDE logs
|
||||
ansible.builtin.fetch:
|
||||
src: "/var/log/aide/aide.log"
|
||||
dest: "{{ aide_db_fetch_dir }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0640"
|
||||
|
||||
- name: Record role success fingerprint
|
||||
sr_fingerprint:
|
||||
sr_message: >-
|
||||
|
||||
Reference in New Issue
Block a user