From f6d59ed922a9759d0c3faf4471052375baf1bc97 Mon Sep 17 00:00:00 2001 From: Viyurz Date: Sat, 17 Feb 2024 19:07:49 +0100 Subject: [PATCH] Replace fake spaces by real ones. --- roles/hedgedoc/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/hedgedoc/tasks/main.yml b/roles/hedgedoc/tasks/main.yml index d1cc8ab..cacb88c 100644 --- a/roles/hedgedoc/tasks/main.yml +++ b/roles/hedgedoc/tasks/main.yml @@ -13,7 +13,7 @@ - name: "Create directory {{ volumes['hedgedoc_configdir'] }} with correct permissions" file: - path: "{{ volumes['hedgedoc_configdir'] }}" + path: "{{ volumes['hedgedoc_configdir'] }}" state: directory owner: "{{ users['hedgedoc'] + uid_shift }}" group: "{{ users['hedgedoc'] + uid_shift }}" @@ -22,7 +22,7 @@ - name: "Create directory {{ volumes['hedgedoc_mysql_datadir'] }} with correct permissions" file: - path: "{{ volumes['hedgedoc_mysql_datadir'] }}" + path: "{{ volumes['hedgedoc_mysql_datadir'] }}" state: directory owner: "{{ users['hedgedoc_mysql'] + uid_shift }}" group: "{{ users['hedgedoc_mysql'] + uid_shift }}"