From bc66483ff7695b529264924e16f3b3316fc7cba5 Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Mon, 26 Jan 2026 16:13:10 -0700 Subject: [PATCH] always be missing quotes --- ansible/roles/olm/tasks/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/olm/tasks/main.yaml b/ansible/roles/olm/tasks/main.yaml index 297ccfd..913ce98 100644 --- a/ansible/roles/olm/tasks/main.yaml +++ b/ansible/roles/olm/tasks/main.yaml @@ -18,7 +18,7 @@ - name: Create olm config directory file: - path: {{ olm_config_path }} + path: "{{ olm_config_path }}" state: directory mode: '0700' owner: root @@ -27,7 +27,7 @@ - name: Create olm config file template: src: templates/config.json.j2 - dest: {{ olm_config_path}}/config.json + dest: "{{ olm_config_path}}/config.json" owner: root group: root mode: '0600'