24 lines
647 B
YAML
24 lines
647 B
YAML
---
|
|
# Define what the file and folder names should be on each OS.
|
|
|
|
- name: Set Pop!_OS Package Names
|
|
ansible.builtin.set_fact:
|
|
lynis_install_dir: /usr/local/lynis
|
|
lynis_report: /home/ling/lynis.log
|
|
when: ansible_distribution == "Pop!_OS"
|
|
|
|
|
|
# TODO Needs tested
|
|
- name: Set Ubuntu Package Names
|
|
ansible.builtin.set_fact:
|
|
lynis_install_dir: /usr/local/lynis
|
|
lynis_report: /root/lynis.log
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
|
|
# TODO Needs tested
|
|
- name: Set FreeBSD Package Names
|
|
ansible.builtin.set_fact:
|
|
lynis_install_dir: /usr/local/lynis
|
|
lynis_report: /root/lynis.log
|
|
when: ansible_distribution == "FreeBSD" |