21 lines
409 B
Bash
Executable File
21 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
#
|
|
# Bitnami Pgpool-II healthcheck
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
# set -o xtrace # Uncomment this line for debugging purpose
|
|
|
|
# Load libraries
|
|
. /opt/bitnami/scripts/libpgpool.sh
|
|
|
|
# Load Pgpool-II environment
|
|
. /opt/bitnami/scripts/pgpool-env.sh
|
|
|
|
pgpool_healthcheck
|