2021-06-11 15:01:45 +02:00
|
|
|
---
|
2023-05-25 13:48:38 +02:00
|
|
|
- name: install fail2ban and configure sshd
|
2024-02-23 12:19:48 +01:00
|
|
|
hosts: "{{ my_hosts | d([]) }}"
|
2024-03-03 16:16:22 +01:00
|
|
|
become: true
|
2024-03-03 16:34:29 +01:00
|
|
|
|
2021-06-11 15:01:45 +02:00
|
|
|
tasks:
|
2024-03-03 16:10:27 +01:00
|
|
|
- name: install fail2ban
|
|
|
|
ansible.builtin.apt:
|
|
|
|
name:
|
|
|
|
- fail2ban
|
2024-03-03 16:16:22 +01:00
|
|
|
update_cache: true
|
2024-03-03 16:34:29 +01:00
|
|
|
|
2024-03-03 16:10:27 +01:00
|
|
|
- name: copy fail2ban configfiles
|
|
|
|
ansible.builtin.copy:
|
|
|
|
src: configfiles/debian-sshd-default.conf
|
|
|
|
dest: /etc/fail2ban/jail.d/debian-sshd-default.conf
|
2024-03-03 16:34:29 +01:00
|
|
|
|
2024-03-03 16:10:27 +01:00
|
|
|
- name: restart fail2ban
|
|
|
|
ansible.builtin.systemd_service:
|
|
|
|
state: restarted
|
2024-03-03 16:16:22 +01:00
|
|
|
daemon_reload: true
|
2024-03-03 16:10:27 +01:00
|
|
|
name: fail2ban
|