diff options
Diffstat (limited to 'roles/setup_fail2ban')
-rw-r--r-- | roles/setup_fail2ban/tasks/main.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/roles/setup_fail2ban/tasks/main.yml b/roles/setup_fail2ban/tasks/main.yml index b0edb6e..d96bc07 100644 --- a/roles/setup_fail2ban/tasks/main.yml +++ b/roles/setup_fail2ban/tasks/main.yml @@ -23,7 +23,7 @@ shell: cp /etc/fail2ban/jail.local /etc/fail2ban/jail.local.backup when: stat_result.stat.exists -- name: Copy fail2ban :: jail.local +- name: Copy fail2ban jail.local copy: src: jail.local dest: /etc/fail2ban/ @@ -31,7 +31,7 @@ group: root mode: "0644" -- name: Copy fail2ban :: path-defaults.conf +- name: Copy fail2ban path-defaults.conf copy: src: jail.local dest: /etc/fail2ban/ @@ -39,7 +39,7 @@ group: root mode: "0644" -- name: Copy fail2ban :: path-defaults.conf +- name: Copy fail2ban path-defaults.conf copy: src: jail.local dest: /etc/fail2ban/ @@ -47,7 +47,7 @@ group: root mode: "0644" -- name: Copy fail2ban :: jail-sshd.conf +- name: Copy fail2ban jail-sshd.conf copy: src: jail-sshd.conf dest: /etc/fail2ban/jail.d @@ -55,7 +55,7 @@ group: root mode: "0644" -- name: Copy fail2ban :: jail-lighttpd.conf +- name: Copy fail2ban jail-lighttpd.conf copy: src: jail-lighttpd.conf dest: /etc/fail2ban/jail.d |