Initial commit
This commit is contained in:
commit
1f22db68e1
5 changed files with 54 additions and 0 deletions
6
templates/fail2ban.local.j2
Normal file
6
templates/fail2ban.local.j2
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{% for section, settings in fail2ban_config.items() %}
|
||||
[{{ section }}]
|
||||
{% for key, value in settings.items() %}
|
||||
{{ key }} = {{ value }}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
6
templates/jail.local.j2
Normal file
6
templates/jail.local.j2
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{% for section, settings in fail2ban_jail.items() %}
|
||||
[{{ section }}]
|
||||
{% for key, value in settings.items() %}
|
||||
{{ key }} = {{ value }}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue