From 6923490ac0696687a1f2db9ecee39c1658de068e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Tue, 29 Jul 2025 15:00:23 +0300 Subject: [PATCH] Fix typo in MariaDB task in Deployer tasks --- tasks/deployer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/deployer.yml b/tasks/deployer.yml index f1d04d7..9092467 100644 --- a/tasks/deployer.yml +++ b/tasks/deployer.yml @@ -143,7 +143,7 @@ - "~/data/mariadb:/var/lib/mysql" restart_policy: always env: - MYSQL_ROOT_PASSWORD: "{{ config.databases.mariadb.users.root.password }}" + MYSQL_ROOT_PASSWORD: "{{ config.mariadb.users.root.password }}" register: deployerTaskM2 when: - (deployerTaskM1 is defined and deployerTaskM1.changed) or deployerTaskM1 is undefined