]> git.phdru.name Git - ansible.git/commitdiff
Fix(debian/firewall): Install `iptables`
authorOleg Broytman <phd@phdru.name>
Sun, 6 Mar 2022 18:16:00 +0000 (21:16 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 7 Mar 2022 06:50:29 +0000 (09:50 +0300)
playbooks/roles/debian/firewall/tasks/main.yml

index e36bd89f3e71e24a838f638ae3325d664be99434..29c9bc9fd0c2521bf59ac7077ffe5b9343dba8bc 100644 (file)
@@ -1,9 +1,9 @@
-- name: Install fail2ban
+- name: Install iptables and fail2ban
   become: true
   apt:
     cache_valid_time: 3600
     install_recommends: no
-    name: fail2ban
+    name: ['iptables', 'fail2ban']
     state: latest
     update_cache: yes
   notify: Restart firewall