From c8fefeca14ab1a6f72c569c1fb590eb503880383 Mon Sep 17 00:00:00 2001 From: "Yenthe V.G" Date: Sat, 11 May 2019 14:50:59 +0200 Subject: [PATCH] [FIX] odoo_install: add libq-dev as dependency Should fix https://github.com/Yenthe666/InstallScript/issues/130#issuecomment-491508265 --- odoo_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo_install.sh b/odoo_install.sh index c69c356..a413a56 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -52,7 +52,7 @@ sudo apt-get upgrade -y # Install PostgreSQL Server #-------------------------------------------------- echo -e "\n---- Install PostgreSQL Server ----" -sudo apt-get install postgresql -y +sudo apt-get install postgresql libpq-dev -y echo -e "\n---- Creating the ODOO PostgreSQL User ----" sudo su - postgres -c "createuser -s $OE_USER" 2> /dev/null || true