From c8432c0507c140247f5757b2aa292b00310eec0c Mon Sep 17 00:00:00 2001 From: Thomas Constans Date: Fri, 19 Sep 2025 15:59:02 +0200 Subject: [PATCH] add quotes to password in my.cnf --- templates/root-my.cnf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/root-my.cnf.j2 b/templates/root-my.cnf.j2 index 5f8400a..3a6e5f1 100644 --- a/templates/root-my.cnf.j2 +++ b/templates/root-my.cnf.j2 @@ -1,4 +1,4 @@ [client] host=localhost user={{ mariadb_root_username }} -password={{ mariadb_root_password }} \ No newline at end of file +password="{{ mariadb_root_password }}" \ No newline at end of file