From 56ae9a2b2104bf9e9c74f143347b1ea0d83896c7 Mon Sep 17 00:00:00 2001 From: drmedrme Date: Tue, 5 Sep 2017 18:46:15 +0100 Subject: [PATCH 1/4] Add Vagrant User For Pycharm Use --- odoo_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/odoo_install.sh b/odoo_install.sh index f3115a8..bbd5438 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -17,6 +17,7 @@ ##fixed parameters #odoo OE_USER="odoo" +OE_USER2="vagrant" OE_HOME="/$OE_USER" OE_HOME_EXT="/$OE_USER/${OE_USER}-server" #The default port where this Odoo instance will run under (provided you use the command -c in the terminal) @@ -56,6 +57,7 @@ sudo apt-get install postgresql -y 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_USER2" 2> /dev/null || true #-------------------------------------------------- # Install Dependencies From b12c20ee15907e6d3a6ae5038cc6ed6ba45bf975 Mon Sep 17 00:00:00 2001 From: drmedrme Date: Sat, 9 Sep 2017 20:56:41 +0100 Subject: [PATCH 2/4] saas-17 change --- odoo_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/odoo_install.sh b/odoo_install.sh index bbd5438..810fc98 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -27,7 +27,8 @@ INSTALL_WKHTMLTOPDF="True" OE_PORT="8069" #Choose the Odoo version which you want to install. For example: 10.0, 9.0, 8.0, 7.0 or saas-6. When using 'trunk' the master version will be installed. #IMPORTANT! This script contains extra libraries that are specifically needed for Odoo 10.0 -OE_VERSION="10.0" +#OE_VERSION="10.0" +OE_VERSION="saas-17" # Set this to True if you want to install Odoo 10 Enterprise! IS_ENTERPRISE="False" #set the superadmin password From 43257016895fff3612625b82b6b6aa65a46391f1 Mon Sep 17 00:00:00 2001 From: drmedrme Date: Wed, 13 Sep 2017 21:43:49 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c08525..55c9008 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -This script is based on the install script from André Schenkels (https://github.com/aschenkels-ictstudio/openerp-install-scripts) +This script is based on the install script from André Schenkels (https://github.com/aschenkels-ictstudio/openerp-install-scripts) and Yenthe666 script at https://github.com/Yenthe666/InstallScript but goes a bit further. This script will also give you the ability to define an xmlrpc_port in the .conf file that is generated under /etc/ This script can be safely used in a multi-odoo code base server because the default Odoo port is changed BEFORE the Odoo is started.

Installation procedure

1. Download the script: ``` -sudo wget https://raw.githubusercontent.com/Yenthe666/InstallScript/10.0/odoo_install.sh +sudo wget https://raw.githubusercontent.com/drmedrdme/Odoo-InstallScript/10.0/odoo_install.sh ``` 2. Make the script executable: ``` From 37afed546a439d1e1cb4f6d5bf69ba4b828d8164 Mon Sep 17 00:00:00 2001 From: drmedrme Date: Wed, 13 Sep 2017 21:45:46 +0100 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 55c9008..dafbbc3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This script can be safely used in a multi-odoo code base server because the defa

Installation procedure

1. Download the script: ``` -sudo wget https://raw.githubusercontent.com/drmedrdme/Odoo-InstallScript/10.0/odoo_install.sh +sudo wget https://raw.githubusercontent.com/drmedrme/Odoo-InstallScript/10.0/odoo_install.sh ``` 2. Make the script executable: ```