diff --git a/cdist/conf/type/__postgres_conf/explorer/state b/cdist/conf/type/__postgres_conf/explorer/state index a4930296..589925de 100644 --- a/cdist/conf/type/__postgres_conf/explorer/state +++ b/cdist/conf/type/__postgres_conf/explorer/state @@ -37,6 +37,11 @@ esac conf_name=${__object_id:?} +su - "${postgres_user}" -c 'psql postgres -c "SELECT 1"' >/dev/null || { + echo 'Connection to PostgreSQL server failed' >&2 + exit 1 +} + if su - "${postgres_user}" -c "psql postgres -twAc 'SHOW ${conf_name}'" \ | cmp -s "${__object:?}/parameter/value" - then