From 4df13f14259e3b417a5b2d4b3c1c344a0314a832 Mon Sep 17 00:00:00 2001 From: Aaron Bohy Date: Thu, 8 Oct 2015 10:17:16 +0200 Subject: [PATCH] [IMP] openerp-server.conf: custom addons take priority over odoo addons Moving the extra addons folder before the odoo addons folder in the addons_path allows to use custom implementation of a given addon (if there are two addons with the same name, one in extra-addons, the other in openerp/addons, the first one will take priority over the second one which will simply be ignored). --- 8.0/openerp-server.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/8.0/openerp-server.conf b/8.0/openerp-server.conf index 679610c..0a1a0ed 100644 --- a/8.0/openerp-server.conf +++ b/8.0/openerp-server.conf @@ -1,5 +1,5 @@ [options] -addons_path = /usr/lib/python2.7/dist-packages/openerp/addons,/mnt/extra-addons +addons_path = /mnt/extra-addons,/usr/lib/python2.7/dist-packages/openerp/addons data_dir = /var/lib/odoo auto_reload = True ; admin_passwd = admin