6547b0d188
Additionally deal with case of user specifiying openerp-server as part of the command line to run.
28 lines
467 B
Bash
Executable File
28 lines
467 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# set odoo database host, port, user and password
|
|
: ${PGHOST:=$DB_PORT_5432_TCP_ADDR}
|
|
: ${PGPORT:=$DB_PORT_5432_TCP_PORT}
|
|
: ${PGUSER:=${DB_ENV_POSTGRES_USER:='postgres'}}
|
|
: ${PGPASSWORD:=$DB_ENV_POSTGRES_PASSWORD}
|
|
export PGHOST PGPORT PGUSER PGPASSWORD
|
|
|
|
case "$1" in
|
|
--)
|
|
shift
|
|
exec gosu odoo openerp-server "$@"
|
|
;;
|
|
-*)
|
|
exec gosu odoo openerp-server "$@"
|
|
;;
|
|
openerp-server)
|
|
exec gosu odoo "$@"
|
|
;;
|
|
*)
|
|
exec "$@"
|
|
esac
|
|
|
|
exit 1
|