[IMP]Odoobackup : allows different formats options per host (default zip)

This commit is contained in:
Fabien BOURGEOIS 2018-07-23 10:17:33 +02:00
parent 5e2519c024
commit 6090e34854
1 changed files with 2 additions and 1 deletions

View File

@ -6,12 +6,13 @@ index=0
IFS=':' read -ra ODOO_HOST <<< "$ODOO_HOST"
IFS=':' read -ra ODOO_ADMIN_PASSWORD <<< "$ODOO_ADMIN_PASSWORD"
IFS=':' read -ra ODOO_DATABASES <<< "$ODOO_DATABASES"
IFS=':' read -ra ODOO_FMT <<< "$ODOO_FMT"
for host in "${ODOO_HOST[@]}"
do
HOST=${host}
ADMIN_PASSWORD=${ODOO_ADMIN_PASSWORD[$index]}
DATABASES=${ODOO_DATABASES[$index]}
FMT=${ODOO_FMT:='zip'}
FMT=${ODOO_FMT[$index]:='zip'}
export HOST ADMIN_PASSWORD DATABASES FMT
envsubst < /home/odoo/backup.template >> /home/odoo/backup.sh
((index++))