mirror of
https://github.com/de-it-krachten/ansible-role-aide
synced 2026-05-14 11:41:41 +00:00
No description
- Jinja 100%
|
|
||
|---|---|---|
| .github/workflows | ||
| defaults | ||
| meta | ||
| molecule/default | ||
| tasks | ||
| .ansible-lint | ||
| .cicd | ||
| .cicd.overwrite | ||
| .collections | ||
| .gitignore | ||
| .releaserc.yml | ||
| .roles | ||
| .yamllint | ||
| CHANGELOG.md | ||
| README.md | ||
ansible-role-aide
Installs & configures AIDE
Dependencies
Roles
None
Collections
None
Platforms
Supported platforms
- Red Hat Enterprise Linux 101
- Ubuntu 22.04 LTS
- Ubuntu 24.04 LTS
Note: 1 : no automated testing is performed on these platforms
Role Variables
defaults/main.yml
# Settings
aide_settings:
database_in: "file:/var/lib/aide/aide.db"
database_out: "file:/var/lib/aide/aide.db.new"
# Initialize database
aide_init_db: false
# Auditd executables
aide_audit_tools:
- /usr/sbin/audispd
- /usr/sbin/auditctl
- /usr/sbin/auditd
- /usr/sbin/augenrules
- /usr/sbin/aureport
- /usr/sbin/ausearch
- /usr/sbin/autrace
defaults/family-Debian.yml
aide_packages:
- aide
aide_config: /etc/aide/aide.conf
defaults/family-RedHat.yml
aide_packages:
- aide
aide_config: /etc/aide.conf
Example Playbook
molecule/default/converge.yml
- name: sample playbook for role 'aide'
hosts: all
become: 'yes'
tasks:
- name: Include role 'aide'
ansible.builtin.include_role:
name: aide