Initial ansible onboard

This commit is contained in:
2024-09-24 15:19:51 +02:00
parent 7366659355
commit f445996797
492 changed files with 2214589 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
---
# Handlers main file for fail2ban role
- name: "HANDLER | Restart fail2ban"
become: true
ansible.builtin.service:
name: "{{ fail2ban_service_name }}"
state: "restarted"
when: fail2ban_service_state != 'stopped' and molecule_yml is not defined
tags:
- "role::fail2ban"
- "role::fail2ban::config"
- "role::fail2ban::install"
- "role::fail2ban::service"