Prevent writing empty values
when sslmode is != disabled Signed-off-by: Firgeis <firgeis@gmail.com>
This commit is contained in:
parent
bddc85599b
commit
81f542649d
|
|
@ -263,11 +263,11 @@ pgbouncer_initialize() {
|
|||
fi
|
||||
|
||||
if [[ "$PGBOUNCER_SERVER_TLS_SSLMODE" != "disable" ]]; then
|
||||
ini-file set --section "pgbouncer" --key "server_tls_cert_file" --value "$PGBOUNCER_SERVER_TLS_CERT_FILE" "$PGBOUNCER_CONF_FILE"
|
||||
ini-file set --section "pgbouncer" --key "server_tls_key_file" --value "$PGBOUNCER_SERVER_TLS_KEY_FILE" "$PGBOUNCER_CONF_FILE"
|
||||
! is_empty_value ini-file set --section "pgbouncer" --key "server_tls_cert_file" --value "$PGBOUNCER_SERVER_TLS_CERT_FILE" "$PGBOUNCER_CONF_FILE"
|
||||
! is_empty_value ini-file set --section "pgbouncer" --key "server_tls_key_file" --value "$PGBOUNCER_SERVER_TLS_KEY_FILE" "$PGBOUNCER_CONF_FILE"
|
||||
! is_empty_value "$PGBOUNCER_SERVER_TLS_CA_FILE" && ini-file set --section "pgbouncer" --key "server_tls_ca_file" --value "$PGBOUNCER_SERVER_TLS_CA_FILE" "$PGBOUNCER_CONF_FILE"
|
||||
! is_empty_value "$PGBOUNCER_SERVER_TLS_PROTOCOLS" && ini-file set --section "pgbouncer" --key "server_tls_protocols" --value "$PGBOUNCER_SERVER_TLS_PROTOCOLS" "$PGBOUNCER_CONF_FILE"
|
||||
ini-file set --section "pgbouncer" --key "server_tls_ciphers" --value "$PGBOUNCER_SERVER_TLS_CIPHERS" "$PGBOUNCER_CONF_FILE"
|
||||
! is_empty_value ini-file set --section "pgbouncer" --key "server_tls_ciphers" --value "$PGBOUNCER_SERVER_TLS_CIPHERS" "$PGBOUNCER_CONF_FILE"
|
||||
fi
|
||||
else
|
||||
debug "Configuration file is mounted externally, skipping configuration"
|
||||
|
|
|
|||
Loading…
Reference in New Issue