17 lines
479 B
YAML
17 lines
479 B
YAML
# SPDX-License-Identifier: MIT
|
|
---
|
|
- name: Ensure that the role runs with default parameters
|
|
hosts: all
|
|
gather_facts: false # test that role works in this case
|
|
roles:
|
|
- role: linux-system-roles.aide
|
|
vars:
|
|
aide_install: true
|
|
aide_init: true
|
|
tasks:
|
|
- name: Check header for ansible_managed, fingerprint
|
|
include_tasks: tasks/check_not_present_header.yml
|
|
vars:
|
|
__file: /etc/aide.conf
|
|
__fingerprint: system_role:aide
|