From 3b67fe52498d3cd8ce9bb3b381d541f5191d2b11 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Tue, 24 Jan 2017 09:25:24 +0100 Subject: [PATCH] Update to Ansible 2.2.1.0 and adjust all file mode settings to provide them as strings --- tasks/apache.yml | 2 +- tasks/configure.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/apache.yml b/tasks/apache.yml index be6bf3e..df0e606 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: '644' notify: "Restart Apache" - name: "Enable Apache Status Site" diff --git a/tasks/configure.yml b/tasks/configure.yml index 30a8d85..a482faf 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -28,7 +28,7 @@ dest: '/etc/netdata/{{ item }}' owner: 'root' group: 'root' - mode: 644 + mode: '644' backup: yes with_items: - 'health_alarm_notify.conf' -- GitLab