From 1af72df4dcd0b59ef71c3af9d0a3c017dc95346c Mon Sep 17 00:00:00 2001 From: c0repwn3r Date: Fri, 21 Apr 2023 18:34:28 -0400 Subject: [PATCH] fix! infra overhaul --- ansible/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/deploy.yaml b/ansible/deploy.yaml index cda5783eded569a0e4daec3032673c26f69c180b..1baab4f1398b9399682ebccbccf895b759bf7e45 100644 --- a/ansible/deploy.yaml +++ b/ansible/deploy.yaml @@ -20,12 +20,12 @@ ansible.builtin.ping: - name: Create configuration directory ansible.builtin.file: - path: {{ api_config_dir }} + path: "{{ api_config_dir }}" state: directory mode: 0755 - name: Create data directory ansible.builtin.file: - path: {{ db_data_dir }} + path: "{{ db_data_dir }}" state: directory mode: 0755 - name: Create API config file