From 039c5f0499979f27f3f386f0777b62f625869ef1 Mon Sep 17 00:00:00 2001 From: iSergio Date: Fri, 25 May 2018 10:04:14 +0300 Subject: [PATCH] Rename categories --- pgpool/configure.sh | 24 ++++++++++++------------ postgresql/bin/pg_replication | 11 ++++++++--- postgresql/configure.sh | 2 +- 3 files changed, 21 insertions(+), 16 deletions(-) diff --git a/pgpool/configure.sh b/pgpool/configure.sh index 909c13c..8d5873b 100755 --- a/pgpool/configure.sh +++ b/pgpool/configure.sh @@ -12,10 +12,10 @@ fi TYPE=primary VERBOSE=false -CATEGORY=a +CATEGORY=A DB_CLUSTER=false -usage="$(basename "$0") [-h] [-p|s] [-a|b] [-d] -- Script configure pgpool-II +usage="$(basename "$0") [-h] [-p|s] [-A|B] [-d] -- Script configure pgpool-II where: -h show this help text and exit -p configure pgpool as primary @@ -24,15 +24,15 @@ usage="$(basename "$0") [-h] [-p|s] [-a|b] [-d] -- Script configure pgpool-II -b configure pgpool for category B (2 servers) (jboss and postgresql cluster on same hasts) (Default: a) -d configure pgpool for PostgreSQL cluster (Default: false) Example usage: - configure.sh -p -a -- PgPool will be configured for primary server Category A without PostgreSQL (app-primary) - configure.sh -s -a -- PgPool will be configured for primary server Category A without PostgreSQL (app-standby) - configure.sh -p -a -d -- PgPool will be configured for primary server Category A with PostgreSQL (db-primary) - configure.sh -s -a -d -- PgPool will be configured for primary server Category A with PostgreSQL (db-standby) - configure.sh -p -b -- PgPool will be configured for primary server Category B with PostgreSQL (primary) - configure.sh -s -b -- PgPool will be configured for primary server Category B with PostgreSQL (standby) + configure.sh -A -p -- PgPool will be configured for primary server Category A without PostgreSQL (app-primary) + configure.sh -A -s -- PgPool will be configured for primary server Category A without PostgreSQL (app-standby) + configure.sh -A -p -d -- PgPool will be configured for primary server Category A with PostgreSQL (db-primary) + configure.sh -A -s -d -- PgPool will be configured for primary server Category A with PostgreSQL (db-standby) + configure.sh -B -p -- PgPool will be configured for primary server Category B with PostgreSQL (primary) + configure.sh -B -s -- PgPool will be configured for primary server Category B with PostgreSQL (standby) " -while getopts ':psvhabd' option; do +while getopts ':psvhABd' option; do case "$option" in p) TYPE=primary ;; @@ -40,9 +40,9 @@ while getopts ':psvhabd' option; do ;; v) VERBOSE=true ;; - a) CATEGORY=a + A) CATEGORY=A ;; - b) CATEGORY=b + B) CATEGORY=B DB_CLUSTER=true ;; d) DB_CLUSTER=true @@ -67,7 +67,7 @@ if [[ ! -z $_TYPE ]]; then TYPE=$_TYPE fi -if [[ $DB_CLUSTER == false && "$CATEGORY" == "a" ]]; then +if [[ $DB_CLUSTER == false && "$CATEGORY" == "A" ]]; then PGPOOL_PRIMARY_HOST=$JBOSS_PRIMARY_HOST PGPOOL_STANDBY_HOST=$JBOSS_STANDBY_HOST fi diff --git a/postgresql/bin/pg_replication b/postgresql/bin/pg_replication index 40cf6e8..c6bbe99 100755 --- a/postgresql/bin/pg_replication +++ b/postgresql/bin/pg_replication @@ -227,21 +227,26 @@ if [ $# -lt 1 ]; then exit 1 fi +CONFIGURE=false + while getopts ':hcst' option; do case "$option" in h) echo "$usage" exit ;; - c) configure - exit - ;; s) status ;; t) PGTUNE=true ;; + c) CONFIGURE=true + ;; \?) printf "illegal option: -%s\n" "$OPTARG" >&2 echo "$usage" >&2 exit 1 ;; esac done + +if [[ "$CONFIGURE" == true ]]; then + configure +fi diff --git a/postgresql/configure.sh b/postgresql/configure.sh index 1db5c01..2378d07 100755 --- a/postgresql/configure.sh +++ b/postgresql/configure.sh @@ -97,5 +97,5 @@ sed -i 's/__PGPOOL_STANDBY_HOST__/'$PGPOOL_STANDBY_HOST'/g' /usr/local/bin/pg_re cp -rf tsearch_data/* /usr/share/pgsql/tsearch_data/ if [[ "$TYPE" == "primary" ]]; then - pg_replication -c + pg_replication -c -t fi -- GitLab