This website works better with JavaScript.
Home
Explore
Help
Sign In
overmind
/
matrix-docker-ansible-deploy
mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Use the correct variable name in Postgres password length check.
pull/809/head
Hardy Erlinger
5 years ago
parent
3647b23628
commit
da4d4b824f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
roles/matrix-postgres/tasks/validate_config.yml
+ 1
- 1
roles/matrix-postgres/tasks/validate_config.yml
View File
@@ -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"
Write
Preview
Loading…
Cancel
Save