negate second gosu command when running as paperless user

This commit is contained in:
Aidan Stein 2022-07-09 16:14:33 -04:00
parent e86f737320
commit ea07b261ad

View File

@ -95,11 +95,7 @@ initialize() {
done
set -e
if [ $(id -u) == $(id -u paperless) ]; then
/sbin/docker-prepare.sh
else
gosu paperless /sbin/docker-prepare.sh
fi
${gosu_cmd[@]} /sbin/docker-prepare.sh
}
install_languages() {
@ -141,6 +137,11 @@ install_languages() {
echo "Paperless-ngx docker container starting..."
gosu_cmd=(gosu paperless)
if [ $(id -u) == $(id -u paperless) ]; then
gosu_cmd=()
fi
# Install additional languages if specified
if [[ -n "$PAPERLESS_OCR_LANGUAGES" ]]; then
install_languages "$PAPERLESS_OCR_LANGUAGES"
@ -150,7 +151,7 @@ initialize
if [[ "$1" != "/"* ]]; then
echo Executing management command "$@"
exec gosu paperless python3 manage.py "$@"
exec ${gosu_cmd[@]} python3 manage.py "$@"
else
echo Executing "$@"
exec "$@"