From 22ff694f31039a415f4bd312cf8f0b6c3cc94165 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Wed, 24 Feb 2021 16:17:34 +0100 Subject: [PATCH] Fix a typo. --- tasks/keycloak-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/keycloak-install.yml b/tasks/keycloak-install.yml index 9de018a..02aa5d1 100644 --- a/tasks/keycloak-install.yml +++ b/tasks/keycloak-install.yml @@ -35,7 +35,7 @@ file: dest={{ keycloak_install_dir }}/{{ keycloak_distribution }}/{{ keycloak_wildfly_mode }}/{{ item }} state=directory owner={{ keycloak_user }} group={{ keycloak_user }} mode='0750' recurse=yes with_items: '{{ keycloak_owned_directories }}' - - name: Fix the permissions of the keycloak data directorie if they are inside the distribution + - name: Fix the permissions of the keycloak data directories if they are inside the distribution {{ keycloak_install_dir }}/{{ keycloak_distribution }}/{{ keycloak_wildfly_mode }}/data file: dest={{ keycloak_install_dir }}/{{ keycloak_distribution }}/{{ keycloak_wildfly_mode }}/data/{{ item }} state=directory owner={{ keycloak_user }} group={{ keycloak_user }} mode='0750' recurse=yes with_items: '{{ keycloak_data_subdirs }}' when: keycloak_data_directory == keycloak_distribution_data_directory