hac/ansible/roles/fail2ban/tasks/main.yml

20 lines
376 B
YAML
Raw Normal View History

2024-03-20 13:45:58 +01:00
---
- name: Install fail2ban
ansible.builtin.apt:
name: "fail2ban"
state: latest
- name: Copy sshd.conf
ansible.builtin.copy:
src: 'sshd.conf'
dest: '/etc/fail2ban/jail.d/sshd.conf'
mode: "0640"
notify:
- Restart fail2ban
- name: Start fail2ban.service
ansible.builtin.systemd:
state: started
name: fail2ban.service
enabled: true