diff --git a/pgpool/configure.sh b/pgpool/configure.sh index 4a03a844660a67b4a366f5a71cf8950bfb7119c5..11c5d542139360de1dab1ec1ae41a2dff4894c48 100755 --- a/pgpool/configure.sh +++ b/pgpool/configure.sh @@ -14,19 +14,19 @@ if ! [[ $choice =~ ^([yY][eE][sS]]|[yY])$ ]]; then exit 0 fi -read -r -p "For which server will be configured PgPool-II(primary | master) (Default: primary)?" _TYPE +read -r -p "For which server will be configured PgPool-II(primary | master) (Default: primary):" _TYPE if [[ ! -z $_TYPE ]]; then TYPE=$_TYPE fi -read -r -p "PgPool trusted servers (Default: $PGPOOL_TRUSTED_SERVERS)?" _PGPOOL_TRUSTED_SERVERS +read -r -p "PgPool trusted servers (Default: $PGPOOL_TRUSTED_SERVERS):" _PGPOOL_TRUSTED_SERVERS if [[ ! -z $_PGPOOL_TRUSTED_SERVERS ]]; then PGPOOL_TRUSTED_SERVERS=$_PGPOOL_TRUSTED_SERVERS fi -read -r -p "PgPool trusted servers (Default: $PGPOOL_DELEGATE_IP)?" _PGPOOL_DELEGATE_IP +read -r -p "PgPool delegate ip (Default: $PGPOOL_DELEGATE_IP):" _PGPOOL_DELEGATE_IP if [[ ! -z $_PGPOOL_DELEGATE_IP ]]; then PGPOOL_DELEGATE_IP=$_PGPOOL_DELEGATE_IP fi -read -r -p "PgPool trusted servers (Default: $PGPOOL_INTERFACE)?" _PGPOOL_INTERFACE +read -r -p "PgPool virtual ip interface (Default: $PGPOOL_INTERFACE):" _PGPOOL_INTERFACE if [[ ! -z $_PGPOOL_INTERFACE ]]; then PGPOOL_INTERFACE=$_PGPOOL_INTERFACE fi