mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
Dont require pg_admin_password unless we're using it.
This commit is contained in:
@@ -3,7 +3,9 @@ DATABASE_NAME={{ pg_database|quote }}
|
||||
DATABASE_HOST={{ pg_hostname|default('postgres')|quote }}
|
||||
DATABASE_PORT={{ pg_port|default('5432')|quote }}
|
||||
DATABASE_PASSWORD={{ pg_password|default('awxpass')|quote }}
|
||||
DATABASE_ADMIN_PASSWORD={{ pg_admin_password|default('postgrespass')|quote }}
|
||||
{% if pg_admin_password is defined %}
|
||||
DATABASE_ADMIN_PASSWORD={{ pg_admin_password|quote }}
|
||||
{% endif %}
|
||||
MEMCACHED_HOST={{ memcached_hostname|default('memcached') }}
|
||||
MEMCACHED_PORT={{ memcached_port|default('11211')|quote }}
|
||||
RABBITMQ_HOST={{ rabbitmq_hostname|default('rabbitmq')|quote }}
|
||||
|
||||
Reference in New Issue
Block a user