diff --git a/postgresql/install_check.pl b/postgresql/install_check.pl index 737154a2a..01735f8be 100755 --- a/postgresql/install_check.pl +++ b/postgresql/install_check.pl @@ -11,7 +11,7 @@ sub is_installed return 0 if (!-x $config{'psql'}); if ($_[0]) { # Check for .conf and if can login - return 1 if (!-r $hba_conf_file); + return 1 if (!-r $hba_conf_file && &is_postgresql_local()); return 2 if (&is_postgresql_running() == 1); } return 1;