/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packaging/linux/docker/standard/entrypoint.sh
47 строк
1 KB
Daniel Wang
Wait command (#22246)
03 фев 2020, 21:50
Не верифицирован
03 фев 2020, 21:50
fa8da03
Код
Авторство
О чём код?
#!/usr/bin/env bash # shellcheck disable=SC2086,SC2068 set -euo pipefail # chown the data dirs if running as root, then rerun the script as keybase if [[ "$(id -u)" -eq "0" ]]; then chown -R keybase:keybase \ /home/keybase/.config \ /home/keybase/.cache exec gosu keybase ${BASH_SOURCE[0]} "$@" exit 0 fi # If a command was passed and KEYBASE_SERVICE is not set, simply run the command if [ "$#" -gt 0 ] && [ ! -v KEYBASE_SERVICE ]; then exec "$@" exit 0 fi KEYBASE_SERVICE_ARGS="-debug -use-default-log-file ${KEYBASE_SERVICE_ARGS:-""}" keybase $KEYBASE_SERVICE_ARGS service & if [ "$#" -eq 0 ] || [ -v KEYBASE_LOG_SERVICE_TO_STDOUT ]; then tail -F /home/keybase/.cache/keybase/keybase.service.log & fi KEYBASE_KBFS_ARGS="-debug -log-to-file ${KEYBASE_KBFS_ARGS:-"-mount-type=none"}" KEYBASE_DEBUG=1 kbfsfuse $KEYBASE_KBFS_ARGS & if [ "$#" -eq 0 ] || [ -v KEYBASE_LOG_KBFS_TO_STDOUT ]; then tail -F /home/keybase/.cache/keybase/keybase.kbfs.log & fi # Wait up to 10 seconds each for both the service and KBFS to start keybase ctl wait --include-kbfs # Possibly run oneshot if it was requested by the user if [ -v KEYBASE_USERNAME ] && [ -v KEYBASE_PAPERKEY ]; then keybase --no-auto-fork --no-debug oneshot fi # Run the main command in foreground if one was passed if [ "$#" -gt 0 ]; then exec "$@" exit 0 fi wait -n pkill -P $$