mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-02-03 13:13:22 +08:00
Use 'postgresql' prefix with SQLAlchemy instead of 'postgres'
This commit is contained in:
@@ -21,7 +21,7 @@ pid_file: /run/mailman3/master.pid
|
||||
|
||||
[database]
|
||||
class: mailman.database.postgresql.PostgreSQLDatabase
|
||||
url: postgres://mailmanadmin:{{ mailman_mailman_db_pass }}@{{ mailman_db_server }}/mailman
|
||||
url: postgresql://mailmanadmin:{{ mailman_mailman_db_pass }}@{{ mailman_db_server }}/mailman
|
||||
|
||||
[archiver.hyperkitty]
|
||||
class: hyperkitty.archiver.Archiver
|
||||
|
||||
@@ -354,7 +354,7 @@ APP_NAME = 'Fedora list archives'
|
||||
USE_INTERNAL_AUTH = False
|
||||
|
||||
# URL to the KittyStore database
|
||||
KITTYSTORE_URL = 'postgres://kittystoreapp:{{ mailman_kittystore_db_pass }}@{{ mailman_db_server }}/kittystore'
|
||||
KITTYSTORE_URL = 'postgresql://kittystoreapp:{{ mailman_kittystore_db_pass }}@{{ mailman_db_server }}/kittystore'
|
||||
# Path to the KittyStore search index (writable directory)
|
||||
KITTYSTORE_SEARCH_INDEX = '{{ mailman_webui_basedir }}/kittystore_search_index'
|
||||
|
||||
|
||||
@@ -21,4 +21,4 @@ DATABASES = {
|
||||
'PORT': '',
|
||||
}
|
||||
}
|
||||
KITTYSTORE_URL = 'postgres://kittystoreadmin:{{ mailman_kittystore_admin_db_pass }}@{{ mailman_db_server }}/kittystore'
|
||||
KITTYSTORE_URL = 'postgresql://kittystoreadmin:{{ mailman_kittystore_admin_db_pass }}@{{ mailman_db_server }}/kittystore'
|
||||
|
||||
Reference in New Issue
Block a user