env-ansible/tasks/hardness_check_lynis.yml

12 lines
353 B
YAML
Raw Normal View History

- name: Install Lynis
ansible.builtin.git:
repo: https://github.com/CISOfy/lynis
dest: "{{ lynis_install_dir }}"
clone: yes
force: yes
- name: Run Lynis Audit System
shell: "{{ lynis_install_dir }}/lynis --no-colors audit system > {{ lynis_report }} 2>&1"
- name: Make Lynis Report Readable
2020-12-28 21:35:45 -06:00
shell: chmod 444 "{{ lynis_report }}"