From 4f8dae5d545c44f137422684a35520f2e1b6757a Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Fri, 27 Nov 2009 12:34:31 -0800 Subject: [PATCH] Don't complain about hba.conf is postgresql is remote --- postgresql/install_check.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;