From 0a2efd8a428e0aae31446a158149c0d07d9dd173 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Thu, 26 Jan 2023 00:33:40 -0500 Subject: [PATCH] [UPD] script install_OSX_dependency.sh: start postgresql at installation --- script/install/install_OSX_dependency.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/script/install/install_OSX_dependency.sh b/script/install/install_OSX_dependency.sh index 0e194d8..df607c9 100755 --- a/script/install/install_OSX_dependency.sh +++ b/script/install/install_OSX_dependency.sh @@ -14,6 +14,7 @@ EL_USER=${USER} #-------------------------------------------------- echo "\n---- Install PostgreSQL Server ----" brew install postgresql +brew services start postgresql echo "\n---- Creating the ERPLibre PostgreSQL User ----" sudo su - postgres -c "createuser -s ${EL_USER}" 2> /dev/null || true