in the Odoo user interface we can update module list from settings, at "Settings/Modules/Update Module List"...
How to do the same operation with command line (using odoo.py) ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
in the Odoo user interface we can update module list from settings, at "Settings/Modules/Update Module List"...
How to do the same operation with command line (using odoo.py) ?
You can create xml-file that calls ir.module.module objects update_list function. Like this:
<openerp>
<data>
<function model="ir.module.module" name="update_list"/>
</data>
</openerp>
./odoo.py -u your_custom_module_updater
*note: you still need to manually update the list for your_custom_module_updater to install it :)
I found related question [1] , but with no answer... [1] https://www.odoo.com/forum/help-1/question/update-from-command-line-exactly-as-fast-as-via-update-module-list-in-ui-75449
and another one with an accepted answer: https://www.odoo.com/forum/help-1/question/is-update-module-list-from-command-line-possible-54578 but
takes too long, however when we update list from ui, it's fairly faster then update of base module with -u base or -i base... so it's not the same operation or equivalent...any suggestions?