[REF] Odoo 8.0-10.0: pass pg connection parameters as CLI arguments
Do not assume that Odoo will handle correctly the PG* environment variables, because it won't. We also rename the PG* variables in order to avoid confusion since we do not export them anymore.
This commit is contained in:
parent
9621c46392
commit
a3d207f2d4
@ -2,20 +2,21 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# set odoo database host, port, user and password
|
# set the postgres database host, port, user and password
|
||||||
: ${PGHOST:=${DB_PORT_5432_TCP_ADDR:='db'}}
|
: ${HOST:=${DB_PORT_5432_TCP_ADDR:='db'}}
|
||||||
: ${PGPORT:=${DB_PORT_5432_TCP_PORT:=5432}}
|
: ${PORT:=${DB_PORT_5432_TCP_PORT:=5432}}
|
||||||
: ${PGUSER:=${DB_ENV_POSTGRES_USER:=${POSTGRES_USER:='postgres'}}}
|
: ${USER:=${DB_ENV_POSTGRES_USER:=${POSTGRES_USER:='postgres'}}}
|
||||||
: ${PGPASSWORD:=${DB_ENV_POSTGRES_PASSWORD:=$POSTGRES_PASSWORD}}
|
: ${PASSWORD:=${DB_ENV_POSTGRES_PASSWORD:=$POSTGRES_PASSWORD}}
|
||||||
export PGHOST PGPORT PGUSER PGPASSWORD
|
# pass them as arguments to the odoo process
|
||||||
|
DB_ARGS=("--db_user" $USER "--db_password" $PASSWORD "--db_host" $HOST "--db_port" $PORT)
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--)
|
--)
|
||||||
shift
|
shift
|
||||||
exec odoo "$@"
|
exec odoo "${DB_ARGS[@]}" "$@"
|
||||||
;;
|
;;
|
||||||
-*)
|
-*)
|
||||||
exec odoo "$@"
|
exec odoo "${DB_ARGS[@]}" "$@"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
@ -2,20 +2,21 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# set odoo database host, port, user and password
|
# set the postgres database host, port, user and password
|
||||||
: ${PGHOST:=${DB_PORT_5432_TCP_ADDR:='db'}}
|
: ${HOST:=${DB_PORT_5432_TCP_ADDR:='db'}}
|
||||||
: ${PGPORT:=${DB_PORT_5432_TCP_PORT:=5432}}
|
: ${PORT:=${DB_PORT_5432_TCP_PORT:=5432}}
|
||||||
: ${PGUSER:=${DB_ENV_POSTGRES_USER:=${POSTGRES_USER:='postgres'}}}
|
: ${USER:=${DB_ENV_POSTGRES_USER:=${POSTGRES_USER:='postgres'}}}
|
||||||
: ${PGPASSWORD:=${DB_ENV_POSTGRES_PASSWORD:=$POSTGRES_PASSWORD}}
|
: ${PASSWORD:=${DB_ENV_POSTGRES_PASSWORD:=$POSTGRES_PASSWORD}}
|
||||||
export PGHOST PGPORT PGUSER PGPASSWORD
|
# pass them as arguments to the odoo process
|
||||||
|
DB_ARGS=("--db_user" $USER "--db_password" $PASSWORD "--db_host" $HOST "--db_port" $PORT)
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--)
|
--)
|
||||||
shift
|
shift
|
||||||
exec openerp-server "$@"
|
exec openerp-server "${DB_ARGS[@]}" "$@"
|
||||||
;;
|
;;
|
||||||
-*)
|
-*)
|
||||||
exec openerp-server "$@"
|
exec openerp-server "${DB_ARGS[@]}" "$@"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
@ -2,20 +2,21 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# set odoo database host, port, user and password
|
# set the postgres database host, port, user and password
|
||||||
: ${PGHOST:=${DB_PORT_5432_TCP_ADDR:='db'}}
|
: ${HOST:=${DB_PORT_5432_TCP_ADDR:='db'}}
|
||||||
: ${PGPORT:=${DB_PORT_5432_TCP_PORT:=5432}}
|
: ${PORT:=${DB_PORT_5432_TCP_PORT:=5432}}
|
||||||
: ${PGUSER:=${DB_ENV_POSTGRES_USER:=${POSTGRES_USER:='postgres'}}}
|
: ${USER:=${DB_ENV_POSTGRES_USER:=${POSTGRES_USER:='postgres'}}}
|
||||||
: ${PGPASSWORD:=${DB_ENV_POSTGRES_PASSWORD:=$POSTGRES_PASSWORD}}
|
: ${PASSWORD:=${DB_ENV_POSTGRES_PASSWORD:=$POSTGRES_PASSWORD}}
|
||||||
export PGHOST PGPORT PGUSER PGPASSWORD
|
# pass them as arguments to the odoo process
|
||||||
|
DB_ARGS=("--db_user" $USER "--db_password" $PASSWORD "--db_host" $HOST "--db_port" $PORT)
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--)
|
--)
|
||||||
shift
|
shift
|
||||||
exec openerp-server "$@"
|
exec openerp-server "${DB_ARGS[@]}" "$@"
|
||||||
;;
|
;;
|
||||||
-*)
|
-*)
|
||||||
exec openerp-server "$@"
|
exec openerp-server "${DB_ARGS[@]}" "$@"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user