As the template is for the aide.conf(5) file I found that the variable name 'ansible_config_template' is a better fit than 'ansible_db_template'. Signed-off-by: Joerg Kastning <joerg@redhat.com>
16 lines
405 B
YAML
16 lines
405 B
YAML
# SPDX-License-Identifier: MIT
|
|
---
|
|
- name: Example aide role invocation
|
|
hosts: targets
|
|
tasks:
|
|
- name: Include role aide
|
|
vars:
|
|
aide_config_template: /tmp/aide-custom.conf.j2
|
|
aide_db_fetch_dir: files
|
|
aide_init: true
|
|
aide_fetch_db: true
|
|
aide_check: true
|
|
aide_update: true
|
|
ansible.builtin.include_role:
|
|
name: linux-system-roles.aide
|