#!/bin/bash ## XXXvlab: this hook should go into a generic odoo image ## XXXvlab: should get location of code CONFIG=$SERVICE_CONFIGSTORE/etc/odoo-server.conf . lib/common set -e PASSWORD="$(relation-get password)" USER="$(relation-get user)" DBNAME="$(relation-get dbname)" HOST="$(relation-get host)" PORT="$(relation-get port)" ADMIN_PASSWORD=$(relation-base-compose-get admin-password 2>/dev/null) || { if [ -e "$CONFIG" ]; then ADMIN_PASSWORD=$(grep ^admin_passwd "$CONFIG" | sed -r 's/^admin_passwd\s+=\s+(.+)$/\1/g') fi if [ -z "$ADMIN_PASSWORD" ]; then info "Generating odoo admin password" ADMIN_PASSWORD=$(gen_password) fi } control=$(p0 "$USER" "$DBNAME" "$PASSWORD" "$ADMIN_PASSWORD" "$HOST" "$PORT" | md5_compat) database=$(options-get database 2>/dev/null) || true database="${database:-$DBNAME}" config-add "\ services: $MASTER_BASE_SERVICE_NAME: command: - '--database=$database' ## All this is to please tecnativa image, but is quite redundant environment: PGHOST: \"$HOST\" PGPORT: \"$PORT\" PGDATABASE: \"$DBNAME\" PGPASSWORD: \"$PASSWORD\" PGUSER: \"$USER\" ADMIN_PASSWORD: \"$ADMIN_PASSWORD\" " file_put $CONFIG <&1); then warn "Failed to get database list" >&2 printf "%s\n" "$out" | prefix " " >&2 ## We don't have access to database list, so... ## if we have a dbfilter set, complain. if dbfilter=$(options-get dbfilter 2>&1) && [ -n "$dbfilter" ]; then err "Cannot set ${WHITE}dbfilter${NORMAL} without access to db list" echo " You don't seem to have access rights on" \ "${DARKYELLOW}$TARGET_SERVICE_NAME${NORMAL} to" \ "the database list" >&2 echo " So you cannot set" \ "${WHITE}dbfilter${NORMAL} option in" \ "${DARKYELLOW}$SERVICE_NAME${NORMAL} options." >&2 exit 1 fi service_base_image_export_dir \ "$MASTER_BASE_SERVICE_NAME" \ /opt/odoo/custom/src/odoo/odoo/sql_db.py \ "$SERVICE_CONFIGSTORE/odoo-sql_db.py" chown "$odoo_uid" "$SERVICE_CONFIGSTORE/odoo-sql_db.py" patch -d "$SERVICE_CONFIGSTORE" -p0 <