blob: df102bf467ae818c9fbcbdf4c67c809cc926f378 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[
{ type: install
message: <<EOM
Now that OpenUpgrade is installed on your system, you can upgrade Odoo from one
major version to another using a command like the following:
# service odoo stop
# su -m odoo -c "odoo \
--upgrade-path=%%PYTHON_SITELIBDIR%%/odoo/addons/openupgrade_scripts/scripts \
--update all \
--stop-after-init \
--load=base,web,openupgrade_framework \
--database=odoodb \
--data-dir=/var/lib/odoo \
--logfile=/dev/stdout \
--config=%%PREFIX%%/etc/odoo/odoo.conf \
--without-demo=all"
Before executing a command such as the one above, consult both the documentation and
OpenUpgrade's issue tracker.
EOM
}
]
|