Skip to Content

Welcome!

This community is for professionals and enthusiasts of our products and services. Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

This question has been flagged
1 Reply
65 Views
Author Best Answer

update the enterprise repo in https://code.inspiredsoftware.com.au/odoo-module/odoo-enterprise

tag a new release

service odoo stop

git fetch --tags
checkout eg git checkout v9.0-2017-05-08

 

export ODOO_VERSION=9.0 ODOO_RELEASE=20170508

curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}c.${ODOO_RELEASE}_all.deb \
        && dpkg --force-depends -i odoo.deb \
        && apt-get update \
        && apt-get -y install -f --no-install-recommends \
        && rm -rf /var/lib/apt/lists/* odoo.deb

/usr/bin/odoo.py --no-xmlrpc --stop-after-init --update base --config /etc/odoo/openerp-server.conf --database <database name>

service odoo start

Avatar
Discard