From 8b3f346921975e2b26c63b74175a1e2bccc6af0c Mon Sep 17 00:00:00 2001 From: Anton Khaldin Date: Tue, 5 Jul 2016 23:33:18 -0700 Subject: [PATCH] Fix ansible-lint complaint about directory permissions Switch from quoted string to actual octal number format Change-Id: I8978dfaf28fa039648b58c364b742659a2b2f6c2 --- tasks/ironic_init_systemd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/ironic_init_systemd.yml b/tasks/ironic_init_systemd.yml index 8e43d59f..bf20d4b3 100644 --- a/tasks/ironic_init_systemd.yml +++ b/tasks/ironic_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" }