[FIX] odoo_install: add libq-dev as dependency

Should fix https://github.com/Yenthe666/InstallScript/issues/130#issuecomment-491508265
pull/181/head
Yenthe V.G 7 years ago committed by GitHub
parent 34fe7f0deb
commit c8fefeca14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -52,7 +52,7 @@ sudo apt-get upgrade -y
# Install PostgreSQL Server # Install PostgreSQL Server
#-------------------------------------------------- #--------------------------------------------------
echo -e "\n---- 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 ----" echo -e "\n---- Creating the ODOO PostgreSQL User ----"
sudo su - postgres -c "createuser -s $OE_USER" 2> /dev/null || true sudo su - postgres -c "createuser -s $OE_USER" 2> /dev/null || true

Loading…
Cancel
Save