This question has been flagged
4 Replies
17684 Views

Hello friends;

Please, who can help me know if there is a way to update a module in OpenERP trough Terminal.

Is here any answer

Thanks a lot in advance

Regards.

Avatar
Discard
Best Answer

Hello Dress,

By passing few parameters, you can update the installed module through terminal.

-d your_db_name -u module_name

-d: Database Name

-u: Update specified module

Ex: python odoo.py -d test_db -u test_sale

You can see all other parameters by passing --help (python odoo.py --help) parameter.

Documentation: CMD Line Parameters - v8 & CMD Line Parameters - v9 

Hope this will help you.

Avatar
Discard
Author

Thanks a lot for the answer. Now it worksz fine :)

openerp-server -u module_name

Best Answer

cd odoo-server/

./odoo-bin -c /etc/odoo-server.conf -d data_base_name -u module_name

Avatar
Discard