From 03a1def5610acf688dd0aef2fc74876d04567e97 Mon Sep 17 00:00:00 2001 From: Travis Truman Date: Wed, 6 Jul 2016 13:53:56 -0400 Subject: [PATCH] Fix ansible-lint complaint about directory permissions Switch from quoted string to actual octal number format Change-Id: I0214870e7b76da61406a3d39443afaf4c522b23f --- tasks/glance_init_systemd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/glance_init_systemd.yml b/tasks/glance_init_systemd.yml index a2ed37ba..4c191cd2 100644 --- a/tasks/glance_init_systemd.yml +++ b/tasks/glance_init_systemd.yml @@ -19,7 +19,7 @@ state: directory owner: "{{ system_user }}" group: "{{ system_group }}" - mode: "2755" + mode: 02755 with_items: - { path: "/var/run" } - { path: "/var/lock" }