8 lines
202 B
Bash
8 lines
202 B
Bash
#!/bin/bash
|
|
|
|
CONF=/opt/odoo/odoo.conf
|
|
ODOOCMD="python /opt/odoo/OCB/odoo.py --config $CONF --log-level debug --log-web --log-sql"
|
|
|
|
# Configuration generation and Odoo launch
|
|
bash genconf.sh && $ODOOCMD
|