Fix capitalization: postgres → Postgres
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
This commit is contained in:
@ -28,7 +28,7 @@ plugin_directories:
|
||||
# Configuration for storing plugin databases
|
||||
plugin_databases:
|
||||
# Some plugins still require sqlite, so configure a path here.
|
||||
# postgres will be used if supported.
|
||||
# Postgres will be used if supported.
|
||||
sqlite: /data/dbs
|
||||
postgres: default
|
||||
|
||||
|
@ -108,7 +108,7 @@ matrix_mx_puppet_slack_login_shared_secret: ''
|
||||
matrix_mx_puppet_slack_presence_enabled: true
|
||||
matrix_mx_puppet_slack_presence_interval: 5000
|
||||
|
||||
# Database configuration, role uses 'sqlite' per default but playbook sets up postgres by default
|
||||
# Database configuration, role uses 'sqlite' per default but playbook sets up Postgres by default
|
||||
matrix_mx_puppet_slack_database_engine: sqlite
|
||||
|
||||
matrix_mx_puppet_slack_sqlite_database_path_local: "{{ matrix_mx_puppet_slack_data_path }}/database.db"
|
||||
|
@ -8,11 +8,11 @@ matrix_synapse_auto_compressor_enabled: true
|
||||
# renovate: datasource=docker depName=registry.gitlab.com/etke.cc/rust-synapse-compress-state
|
||||
matrix_synapse_auto_compressor_version: v0.1.4
|
||||
|
||||
# note: UID/GID better to match the UID/GID of the postgres container, but it doesn't really matter, as volumes are not used here
|
||||
# note: UID/GID better to match the UID/GID of the Postgres container, but it doesn't really matter, as volumes are not used here
|
||||
matrix_synapse_auto_compressor_uid: ''
|
||||
matrix_synapse_auto_compressor_gid: ''
|
||||
|
||||
# note: the postgres image version doesn't matter, as it is used for a SQL script that doesn't use any specific features
|
||||
# note: the Postgres image version doesn't matter, as it is used for a SQL script that doesn't use any specific features
|
||||
matrix_synapse_auto_compressor_postgres_image: "postgres"
|
||||
|
||||
matrix_synapse_auto_compressor_base_path: "{{ matrix_base_data_path }}/synapse-auto-compressor"
|
||||
|
@ -837,7 +837,7 @@ caches:
|
||||
# before reconnecting. Defaults to 0, which means no limit.
|
||||
#
|
||||
# 'allow_unsafe_locale' is an option specific to Postgres. Under the default behavior, Synapse will refuse to
|
||||
# start if the postgres db is set to a non-C locale. You can override this behavior (which is *not* recommended)
|
||||
# start if the Postgres db is set to a non-C locale. You can override this behavior (which is *not* recommended)
|
||||
# by setting 'allow_unsafe_locale' to true. Note that doing so may corrupt your database. You can find more information
|
||||
# here: https://matrix-org.github.io/synapse/latest/postgres.html#fixing-incorrect-collate-or-ctype and here:
|
||||
# https://wiki.postgresql.org/wiki/Locale_data_changes
|
||||
|
@ -423,7 +423,7 @@
|
||||
- name: (Deprecation) Catch and report devture_postgres variables
|
||||
ansible.builtin.fail:
|
||||
msg: |-
|
||||
The postgres role in the playbook now lives under the MASH organization (https://github.com/mother-of-all-self-hosting/ansible-role-postgres).
|
||||
The Postgres role in the playbook now lives under the MASH organization (https://github.com/mother-of-all-self-hosting/ansible-role-postgres).
|
||||
The new role is pretty much the same, but uses differently named variables.
|
||||
|
||||
Please change your configuration (vars.yml) to rename all `devture_postgres_`-prefixed variables (`devture_postgres_*` -> `postgres_*`).
|
||||
|
Reference in New Issue
Block a user