From 42491222a9b97ee65b0ccd16ecd19ff3ff1eae8c Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Mon, 10 Jun 2019 16:18:14 +0200 Subject: [PATCH] ansible-playbooks/general#85 Linting [skip-ci] --- tasks/configure.yml | 2 +- tasks/install.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/configure.yml b/tasks/configure.yml index c29ef53..103b13e 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -7,7 +7,7 @@ dest: /etc/fail2ban/{{ item }} owner: root group: root - mode: 644 + mode: 0644 with_items: - jail.conf - jail.local diff --git a/tasks/install.yml b/tasks/install.yml index e1775f1..e8f0e96 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -37,14 +37,14 @@ copy: src: /tmp/fail2ban-{{ fail2ban_version }}/build/fail2ban.service dest: /lib/systemd/system/fail2ban.service - mode: 644 + mode: 0644 remote_src: yes - name: Copy LogRotate Config copy: src: logrotate dest: /etc/logrotate.d/fail2ban - mode: 644 + mode: 0644 tags: - logrotate @@ -73,4 +73,4 @@ state: touch owner: root group: adm - mode: 640 + mode: 0640 -- GitLab