From 8b6d651b4156f90a052de4fd4383c97c91c6a479 Mon Sep 17 00:00:00 2001 From: Yenthe Date: Sat, 2 Jan 2016 11:28:25 +0100 Subject: [PATCH 1/3] Added pyscogreen requirement Added pyscogreen requirement for longpolling (see https://github.com/Yenthe666/InstallScript/issues/25) --- odoo_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo_install.sh b/odoo_install.sh index 504366d..d899314 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -65,7 +65,7 @@ echo -e "\n---- Install python packages ----" sudo apt-get install python-dateutil python-feedparser python-ldap python-libxslt1 python-lxml python-mako python-openid python-psycopg2 python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi python-docutils python-psutil python-mock python-unittest2 python-jinja2 python-pypdf python-decorator python-requests python-passlib python-pil -y echo -e "\n---- Install python libraries ----" -sudo pip install gdata +sudo pip install gdata psycogreen echo -e "\n--- Install other required packages" sudo apt-get install node-clean-css -y From 2dac7fa36c3eb77a5b55a6a5517042e73d88a8dd Mon Sep 17 00:00:00 2001 From: Yenthe Date: Tue, 26 Jan 2016 14:33:36 +0100 Subject: [PATCH 2/3] Add installation instructions Add installation instructions --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 372ad4d..45d6618 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,17 @@ This script is based on the install script from André Schenkels (https://github.com/aschenkels-ictstudio/openerp-install-scripts) 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/9.0/odoo_install.sh +``` +2. Make the script executable: +``` +sudo chmod +x odoo_install.sh +``` +3. Execute the script: +``` +sudo ./odoo_install.sh +``` From 3bcd02380a07b7d6cd35685629b5b87a61bd1638 Mon Sep 17 00:00:00 2001 From: Yenthe Date: Fri, 25 Mar 2016 08:02:32 +0100 Subject: [PATCH 3/3] [FIX] Add ofxparse dependency The script was missing ofxparse, which is one of the dependencies needed for Odoo. --- odoo_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo_install.sh b/odoo_install.sh index d899314..e227a17 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -65,7 +65,7 @@ echo -e "\n---- Install python packages ----" sudo apt-get install python-dateutil python-feedparser python-ldap python-libxslt1 python-lxml python-mako python-openid python-psycopg2 python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi python-docutils python-psutil python-mock python-unittest2 python-jinja2 python-pypdf python-decorator python-requests python-passlib python-pil -y echo -e "\n---- Install python libraries ----" -sudo pip install gdata psycogreen +sudo pip install gdata psycogreen ofxparse echo -e "\n--- Install other required packages" sudo apt-get install node-clean-css -y