Mercurial > libervia-backend
view docker/backend/scripts/entrypoint.sh @ 3489:d71a163c0861
bridge (pb): connection can be set to used either UNIX socket or TCP socket:
all settings are to be put in `[DEFAULT]` section
- `bridge_pb_connection_type` can be set to `unix_socket` or `socket`
- for `socket`, `bridge_pb_host` and `bridge_pb_port` can be specified
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 21 Mar 2021 22:00:55 +0100 |
parents | 127dde80a0a5 |
children |
line wrap: on
line source
#!/bin/sh eval $(dbus-launch --sh-syntax) # default, backend is launched in foreground if [ $# -eq 0 ] then exec sat fg fi # backend is launched with an explicit subcommand if [ $1 = fg -o $1 = bg -o $1 = debug -o $1 = stop -o $1 = status ] then exec sat "$@" fi # a whole command is specified sat bg exec "$@"