You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@sbidoul it was easy to add the needed piece from the list_db() to my PSQL script, which resulted in:
odoo_db_list=$(psql -X -A -h ${DB_PORT_5432_TCP_ADDR} -p ${DB_PORT_5432_TCP_PORT} -U ${DB_ENV_POSTGRES_USER} -d postgres -t -c "SELECT STRING_AGG(datname, ' ') FROM pg_database WHERE datdba=(SELECT usesysid FROM pg_user WHERE usename=current_user) AND NOT datistemplate and datallowconn") &&for db in ${odoo_db_list}; do click-odoo-update -d $db -c /etc/odoo/odoo.conf --log-level=info &&echo"The Database ${db} has been updated"; done
This work perfectly for me; but ideally this has to remove databases resulting from list_db_incompatible()
No description provided.
The text was updated successfully, but these errors were encountered: