17 lines
442 B
YAML
Raw Normal View History

---
# Lynis hardness check.
2021-02-02 21:28:17 -06:00
- name: General | Tests | Lynis | Install
2021-01-31 17:17:14 -06:00
git:
repo: https://github.com/CISOfy/lynis
dest: "{{ lynis_install_dir }}"
clone: yes
force: yes
2021-02-02 21:28:17 -06:00
- name: General | Tests | Lynis | Run System Audit
shell: "{{ lynis_install_dir }}/lynis --no-colors audit system > {{ lynis_report }} 2>&1"
2021-02-02 21:28:17 -06:00
- name: General | Tests | Lynis | Make Report Readable
2021-01-31 17:17:14 -06:00
file:
2021-01-31 13:55:18 -06:00
path: "{{ lynis_report }}"
mode: '0444'