nomad/ansible/roles/fail2ban/tasks/main.yml
2023-03-18 13:13:16 +00:00

19 lines
395 B
YAML

---
- name: Install fail2ban from apt
become: true
ansible.builtin.apt:
name: fail2ban
state: latest
- name: Copy configuraion to host
become: true
ansible.builtin.copy:
src: templates/fail2ban.jail
dest: /etc/fail2ban/jail.local
force: true
- name: Restart fail2ban to apply config
become: true
ansible.builtin.service:
name: fail2ban
state: restarted