- name: Deploy Snort on Debian family
hosts: snort_debian
become: true
tasks:
- name: Install Snort
ansible.builtin.apt:
update_cache: true
name:
- snort
state: present
failed_when: false
- name: Deploy Snort on RHEL family
hosts: snort_rhel
become: true
tasks:
- name: Install Snort
ansible.builtin.dnf:
name:
- snort
state: present
failed_when: false