test: add cleanup for cron test; fix formatting
Ensure cron test restores state of crontab after test. Fix formatting in a few places. Do not check ansible managed header and fingerprint unless the test uses a custom template with header and fingerprint. Use default for gather_facts unless otherwise needed. Signed-off-by: Rich Megginson <rmeggins@redhat.com>
This commit is contained in:
committed by
Richard Megginson
parent
2c0be7a450
commit
129feb1ac1
+6
-4
@@ -71,8 +71,8 @@
|
|||||||
block:
|
block:
|
||||||
- name: Copy AIDE reference database
|
- name: Copy AIDE reference database
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ aide_db_fetch_dir }}/{{ inventory_hostname }}\
|
src: >-
|
||||||
{{ __aide_db_new_name }}"
|
{{ aide_db_fetch_dir }}/{{ inventory_hostname }}{{ __aide_db_new_name }}
|
||||||
dest: "{{ __aide_db_name }}"
|
dest: "{{ __aide_db_name }}"
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
@@ -91,9 +91,11 @@
|
|||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
cmd: aide --update
|
cmd: aide --update
|
||||||
register: __aide_update_result
|
register: __aide_update_result
|
||||||
failed_when: "'AIDE found NO differences between database and filesystem. Looks okay!!'\
|
failed_when: __msg not in __aide_update_result.stdout
|
||||||
not in __aide_update_result.stdout"
|
|
||||||
changed_when: true
|
changed_when: true
|
||||||
|
vars:
|
||||||
|
__msg: >-
|
||||||
|
AIDE found NO differences between database and filesystem. Looks okay!!
|
||||||
|
|
||||||
- name: Fetch AIDE database
|
- name: Fetch AIDE database
|
||||||
ansible.builtin.fetch:
|
ansible.builtin.fetch:
|
||||||
|
|||||||
+75
-39
@@ -2,46 +2,82 @@
|
|||||||
---
|
---
|
||||||
- name: Ensure that the cron is set up
|
- name: Ensure that the cron is set up
|
||||||
hosts: all
|
hosts: all
|
||||||
gather_facts: false
|
|
||||||
roles:
|
|
||||||
- role: linux-system-roles.aide
|
|
||||||
vars:
|
|
||||||
aide_init: true
|
|
||||||
aide_cron_check: true
|
|
||||||
aide_cron_interval: "0 12 * * *"
|
|
||||||
tasks:
|
tasks:
|
||||||
# - name: Print crontab 1
|
- name: Install crontabs
|
||||||
# ansible.builtin.command: cat /etc/crontab
|
package:
|
||||||
|
name: crontabs
|
||||||
|
|
||||||
- name: Check file content
|
- name: Create tempfile for crontab backup
|
||||||
ansible.builtin.lineinfile:
|
tempfile:
|
||||||
path: /etc/crontab
|
prefix: aide_
|
||||||
regexp: "^.* root /usr/sbin/aide --check"
|
suffix: _crontab
|
||||||
line: "0 12 * * * root /usr/sbin/aide --check"
|
register: __aide_crontab_backup
|
||||||
state: present
|
|
||||||
register: result
|
|
||||||
failed_when: result.changed
|
|
||||||
vars:
|
|
||||||
__fingerprint: system_role:aide
|
|
||||||
|
|
||||||
- name: Ensure that the cron is not set up
|
- name: Backup crontab
|
||||||
hosts: all
|
copy:
|
||||||
gather_facts: false
|
src: /etc/crontab
|
||||||
roles:
|
dest: "{{ __aide_crontab_backup.path }}"
|
||||||
- role: linux-system-roles.aide
|
remote_src: true
|
||||||
vars:
|
mode: preserve
|
||||||
aide_cron_check: false
|
|
||||||
tasks:
|
|
||||||
# - name: Print crontab 2
|
|
||||||
# ansible.builtin.command: cat /etc/crontab
|
|
||||||
|
|
||||||
- name: Check file content
|
- name: Run tests
|
||||||
ansible.builtin.lineinfile:
|
block:
|
||||||
path: /etc/crontab
|
- name: Run the role and set up cron
|
||||||
regexp: "^.* root /usr/sbin/aide --check"
|
ansible.builtin.include_role:
|
||||||
line: "0 12 * * * root /usr/sbin/aide --check"
|
name: linux-system-roles.aide
|
||||||
state: present
|
vars:
|
||||||
register: result
|
aide_init: true
|
||||||
failed_when: not result.changed
|
aide_cron_check: true
|
||||||
vars:
|
aide_cron_interval: "0 12 * * *"
|
||||||
__fingerprint: system_role:aide
|
|
||||||
|
- name: Check file content
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/crontab
|
||||||
|
regexp: "^.* root /usr/sbin/aide --check"
|
||||||
|
line: "0 12 * * * root /usr/sbin/aide --check"
|
||||||
|
state: present
|
||||||
|
register: result
|
||||||
|
failed_when: result is changed
|
||||||
|
|
||||||
|
- name: Run the role and and do not touch cron
|
||||||
|
ansible.builtin.include_role:
|
||||||
|
name: linux-system-roles.aide
|
||||||
|
vars:
|
||||||
|
aide_cron_interval: "0 1 * * *"
|
||||||
|
|
||||||
|
- name: Ensure file is not changed
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/crontab
|
||||||
|
regexp: "^.* root /usr/sbin/aide --check"
|
||||||
|
line: "0 12 * * * root /usr/sbin/aide --check"
|
||||||
|
state: present
|
||||||
|
register: result
|
||||||
|
failed_when: result is changed
|
||||||
|
|
||||||
|
- name: Run the role and disable cron
|
||||||
|
ansible.builtin.include_role:
|
||||||
|
name: linux-system-roles.aide
|
||||||
|
vars:
|
||||||
|
aide_cron_check: false
|
||||||
|
|
||||||
|
- name: Ensure aide cron is removed
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/crontab
|
||||||
|
regexp: "^.* root /usr/sbin/aide --check"
|
||||||
|
line: "0 12 * * * root /usr/sbin/aide --check"
|
||||||
|
state: present
|
||||||
|
register: result
|
||||||
|
failed_when: not result is changed
|
||||||
|
|
||||||
|
always:
|
||||||
|
- name: Restore crontab
|
||||||
|
copy:
|
||||||
|
src: "{{ __aide_crontab_backup.path }}"
|
||||||
|
dest: /etc/crontab
|
||||||
|
remote_src: true
|
||||||
|
mode: preserve
|
||||||
|
|
||||||
|
- name: Delete tempfile
|
||||||
|
file:
|
||||||
|
path: "{{ __aide_crontab_backup.path }}"
|
||||||
|
state: absent
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
---
|
---
|
||||||
- name: Ensure that the role runs with default parameters
|
- name: Ensure that the role runs with default parameters
|
||||||
hosts: all
|
hosts: all
|
||||||
gather_facts: false # test that role works in this case
|
|
||||||
roles:
|
roles:
|
||||||
- role: linux-system-roles.aide
|
- role: linux-system-roles.aide
|
||||||
vars:
|
vars:
|
||||||
|
|||||||
+8
-17
@@ -6,21 +6,12 @@
|
|||||||
roles:
|
roles:
|
||||||
- linux-system-roles.aide
|
- linux-system-roles.aide
|
||||||
tasks:
|
tasks:
|
||||||
- name: Check if file exists
|
- name: Check if the file exists
|
||||||
block:
|
ansible.builtin.stat:
|
||||||
- name: Check if the file exists
|
path: /etc/aide.conf
|
||||||
ansible.builtin.stat:
|
register: file_check
|
||||||
path: "/etc/aide.conf"
|
|
||||||
register: file_check
|
|
||||||
|
|
||||||
- name: Assert that the file exists
|
- name: Assert that the file exists
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that: file_check.stat.exists
|
||||||
- file_check.stat.exists
|
fail_msg: The file does not exist.
|
||||||
fail_msg: "The file does not exist."
|
|
||||||
|
|
||||||
- name: Check header for not present ansible_managed, fingerprint
|
|
||||||
include_tasks: tasks/check_not_present_header.yml
|
|
||||||
vars:
|
|
||||||
__file: /etc/aide.conf
|
|
||||||
__fingerprint: system_role:aide
|
|
||||||
|
|||||||
@@ -2,14 +2,17 @@
|
|||||||
---
|
---
|
||||||
- name: Ensure that the role runs with default parameters
|
- name: Ensure that the role runs with default parameters
|
||||||
hosts: all
|
hosts: all
|
||||||
gather_facts: false # test that role works in this case
|
|
||||||
roles:
|
roles:
|
||||||
- role: linux-system-roles.aide
|
- role: linux-system-roles.aide
|
||||||
vars:
|
vars:
|
||||||
aide_init: true
|
aide_init: true
|
||||||
tasks:
|
tasks:
|
||||||
- name: Check header for ansible_managed, fingerprint
|
- name: Check if the file exists
|
||||||
include_tasks: tasks/check_not_present_header.yml
|
ansible.builtin.stat:
|
||||||
vars:
|
path: /etc/aide.conf
|
||||||
__file: /etc/aide.conf
|
register: file_check
|
||||||
__fingerprint: system_role:aide
|
|
||||||
|
- name: Assert that the file exists
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that: file_check.stat.exists
|
||||||
|
fail_msg: The file does not exist.
|
||||||
|
|||||||
Reference in New Issue
Block a user