[Cleanup] fail2ban

Name all tasks.

It would seems that the task creating the `fail2ban_ignore_ips` fact for
the whitelist exist in both main.yml and ip_whitelist.yml, one of them
might be superfluous.
This commit is contained in:
Mathieu Trossevin 2020-06-19 10:33:25 +02:00
parent 63a0894906
commit 440bec2feb
Signed by: mtrossevin
GPG Key ID: 81987323AE7F3E99
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,7 @@
---
- set_fact:
- name: "Define the whitelist from variables"
set_fact:
fail2ban_ignore_ips: "{{ ['127.0.0.1/8'] | union(fail2ban_default_ignore_ips) | union(fail2ban_additional_ignore_ips) | unique }}"
- name: Update ignoreips lists
@ -12,4 +13,4 @@
notify: restart fail2ban
tags:
- fail2ban
- ips
- ips

View File

@ -15,7 +15,8 @@
tags:
- fail2ban
- set_fact:
- name: "Define ip whitelist from variables"
set_fact:
fail2ban_ignore_ips: "{{ ['127.0.0.1/8'] | union(fail2ban_default_ignore_ips) | union(fail2ban_additional_ignore_ips) | unique }}"
tags:
- fail2ban