christianlempa-boilerplates/ansible/configuration/fail2ban/config-f2b-protect-sshd.yaml

23 lines
547 B
YAML
Raw Normal View History

2021-06-11 15:01:45 +02:00
---
2023-05-25 13:48:38 +02:00
- name: install fail2ban and configure sshd
hosts: "{{ my_hosts | d([]) }}"
become: true
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
update_cache: true
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:10:27 +01:00
- name: restart fail2ban
ansible.builtin.systemd_service:
state: restarted
daemon_reload: true
2024-03-03 16:10:27 +01:00
name: fail2ban