From a86cbdca4ee3b6b957597ae020bd412b9e8696e9 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Mon, 10 Jun 2019 16:18:19 +0200 Subject: [PATCH] ansible-playbooks/general#85 Linting [skip-ci] --- tasks/apache.yml | 4 ++-- tasks/configure.yml | 4 ++-- tasks/elasticsearch.yml | 2 +- tasks/haproxy.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/apache.yml b/tasks/apache.yml index 7048356..c7814c1 100644 --- a/tasks/apache.yml +++ b/tasks/apache.yml @@ -13,7 +13,7 @@ dest: /etc/apache2/sites-available/status{{ apache_conf_ext|default(".conf") }} owner: root group: root - mode: 644 + mode: 0644 notify: "Restart Apache" - name: Enable Apache Status Site @@ -26,7 +26,7 @@ dest: /etc/netdata/python.d/web_log.conf owner: netdata group: netdata - mode: 660 + mode: 0660 - name: Install Custom Alerts template: diff --git a/tasks/configure.yml b/tasks/configure.yml index ee67b08..0613e74 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -28,7 +28,7 @@ dest: /etc/netdata/{{ item }} owner: netdata group: netdata - mode: 644 + mode: 0644 backup: yes with_items: - health_alarm_notify.conf @@ -42,7 +42,7 @@ dest: /etc/netdata/python.d/{{ item }} owner: netdata group: netdata - mode: 644 + mode: 0644 backup: yes with_items: - httpcheck.conf diff --git a/tasks/elasticsearch.yml b/tasks/elasticsearch.yml index 2907911..b6923b4 100644 --- a/tasks/elasticsearch.yml +++ b/tasks/elasticsearch.yml @@ -7,4 +7,4 @@ dest: /etc/netdata/python.d/elasticsearch.conf owner: netdata group: netdata - mode: 660 + mode: 0660 diff --git a/tasks/haproxy.yml b/tasks/haproxy.yml index a57dc89..1c64701 100644 --- a/tasks/haproxy.yml +++ b/tasks/haproxy.yml @@ -13,4 +13,4 @@ dest: /etc/netdata/python.d/haproxy.conf owner: netdata group: netdata - mode: 660 + mode: 0660 -- GitLab