aboutsummaryrefslogtreecommitdiffstats
path: root/roles/setup_fail2ban
diff options
context:
space:
mode:
authorbinary <me@rgoncalves.se>2020-09-08 18:42:46 +0200
committerbinary <me@rgoncalves.se>2020-09-08 18:42:46 +0200
commit8fdc815a24de61a897425a68ece320ef43d64c77 (patch)
tree7a683d450b236c976def4991b6642b0ab44323f5 /roles/setup_fail2ban
parenta408697d37aaff288ceb891c8d10bfc6a097628d (diff)
downloadinfrastructure-8fdc815a24de61a897425a68ece320ef43d64c77.tar.gz
cleanup from old roles
Diffstat (limited to 'roles/setup_fail2ban')
-rw-r--r--roles/setup_fail2ban/tasks/main.yml72
1 files changed, 0 insertions, 72 deletions
diff --git a/roles/setup_fail2ban/tasks/main.yml b/roles/setup_fail2ban/tasks/main.yml
deleted file mode 100644
index d96bc07..0000000
--- a/roles/setup_fail2ban/tasks/main.yml
+++ /dev/null
@@ -1,72 +0,0 @@
-
-# =========================================================================== #
-# __ ____ _ _____ __
-# _________ / /__ / __/___ _(_) /__ \ / /_ ____ _____
-# / ___/ __ \/ / _ \ / /_/ __ `/ / /__/ // __ \/ __ `/ __ \
-# / / / /_/ / / __/ / __/ /_/ / / // __// /_/ / /_/ / / / /
-# /_/ \____/_/\___(_) /_/ \__,_/_/_//____/_.___/\__,_/_/ /_/
-#
-# =========================================================================== #
-
----
-- name: Check installation of fail2ban
- package:
- name: fail2ban
- state: present
-
-- name: Check existence of fail2ban config file -- jail.local
- stat:
- path: /etc/fail2ban/jail.local
- register: stat_result
-
-- name: Backing up ancient fail2ban config file -- jail.local.backup
- shell: cp /etc/fail2ban/jail.local /etc/fail2ban/jail.local.backup
- when: stat_result.stat.exists
-
-- name: Copy fail2ban jail.local
- copy:
- src: jail.local
- dest: /etc/fail2ban/
- owner: root
- group: root
- mode: "0644"
-
-- name: Copy fail2ban path-defaults.conf
- copy:
- src: jail.local
- dest: /etc/fail2ban/
- owner: root
- group: root
- mode: "0644"
-
-- name: Copy fail2ban path-defaults.conf
- copy:
- src: jail.local
- dest: /etc/fail2ban/
- owner: root
- group: root
- mode: "0644"
-
-- name: Copy fail2ban jail-sshd.conf
- copy:
- src: jail-sshd.conf
- dest: /etc/fail2ban/jail.d
- owner: root
- group: root
- mode: "0644"
-
-- name: Copy fail2ban jail-lighttpd.conf
- copy:
- src: jail-lighttpd.conf
- dest: /etc/fail2ban/jail.d
- owner: root
- group: root
- mode: "0644"
- when: inventory_hostname in groups["server-web"]
-
-
-- name: Restart fail2ban service
- systemd:
- name: fail2ban
- enabled: yes
- state: restarted
remember that computers suck.