7d0629adf8
Too many docker users are caught out by the default location for the app.ini file being environment dependent so that when they docker exec into the container the gitea commands do not work properly and require additional -c arguments to correctly pick up the configuration. This PR simply shadows the gitea binary using variants of the FHS compatible script to make the command gitea have the default locations by default. Fix #14468 Reference #17497 Reference #12082 Reference #8941 ... amongst others ... Replace #17501 Signed-off-by: Andrew Thornton <art27@cantab.net>
42 lines
899 B
Bash
Executable file
42 lines
899 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#############################################################################
|
|
# This script sets some defaults for gitea to run in a FHS compliant manner #
|
|
#############################################################################
|
|
|
|
# It assumes that you place this script as gitea in /usr/bin
|
|
#
|
|
# And place the original in /usr/lib/gitea with working files in /var/lib/gitea
|
|
# and main configuration in /etc/gitea/app.ini
|
|
GITEA="/usr/lib/gitea/gitea"
|
|
WORK_DIR="/var/lib/gitea"
|
|
APP_INI="/etc/gitea/app.ini"
|
|
|
|
APP_INI_SET=""
|
|
for i in "$@"; do
|
|
case "$i" in
|
|
"-c")
|
|
APP_INI_SET=1
|
|
;;
|
|
"-c="*)
|
|
APP_INI_SET=1
|
|
;;
|
|
"--config")
|
|
APP_INI_SET=1
|
|
;;
|
|
"--config="*)
|
|
APP_INI_SET=1
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$APP_INI_SET" ]; then
|
|
CONF_ARG="-c \"$APP_INI\""
|
|
fi
|
|
|
|
# Provide FHS compliant defaults
|
|
GITEA_WORK_DIR="${GITEA_WORK_DIR:-$WORK_DIR}" exec -a "$0" "$GITEA" $CONF_ARG "$@"
|
|
|
|
|