From da4d4b824f807e7aecb821c079e62c004909cafe Mon Sep 17 00:00:00 2001 From: Hardy Erlinger Date: Fri, 22 Jan 2021 20:21:01 +0100 Subject: [PATCH] Use the correct variable name in Postgres password length check. --- roles/matrix-postgres/tasks/validate_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/matrix-postgres/tasks/validate_config.yml b/roles/matrix-postgres/tasks/validate_config.yml index 9158e9268..eac4dd5b1 100644 --- a/roles/matrix-postgres/tasks/validate_config.yml +++ b/roles/matrix-postgres/tasks/validate_config.yml @@ -36,4 +36,4 @@ - name: Fail if Postgres password length exceeded fail: msg: "The maximum `matrix_postgres_connection_password` length is 99 characters" - when: "matrix_postgres_connection_hostname|length > 99" + when: "matrix_postgres_connection_password|length > 99"