8 lines
164 B
Bash
Executable File
8 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CONF=/opt/odoo/odoo.conf
|
|
ODOOCMD="python /opt/odoo/OCB/odoo.py --config $CONF"
|
|
|
|
# Configuration generation and Odoo launch
|
|
bash genconf.sh && $ODOOCMD
|