mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
migrate database if app.ini found (#5290)
* migrate database if app.ini found * replacing hard-coded user id by env variable * Update per @zeripath's feedback
This commit is contained in:
parent
cbc14df16a
commit
0236856924
@ -7,6 +7,14 @@ if [ "${USER}" != "git" ]; then
|
|||||||
sed -i -e "s/AllowUsers git$/AllowUsers ${USER}/g" /etc/ssh/sshd_config
|
sed -i -e "s/AllowUsers git$/AllowUsers ${USER}/g" /etc/ssh/sshd_config
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -z "${USER_GID}" ]; then
|
||||||
|
USER_GID="`id -g ${USER}`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "${USER_UID}" ]; then
|
||||||
|
USER_UID="`id -u ${USER}`"
|
||||||
|
fi
|
||||||
|
|
||||||
## Change GID for USER?
|
## Change GID for USER?
|
||||||
if [ -n "${USER_GID}" ] && [ "${USER_GID}" != "`id -g ${USER}`" ]; then
|
if [ -n "${USER_GID}" ] && [ "${USER_GID}" != "`id -g ${USER}`" ]; then
|
||||||
sed -i -e "s/^${USER}:\([^:]*\):[0-9]*/${USER}:\1:${USER_GID}/" /etc/group
|
sed -i -e "s/^${USER}:\([^:]*\):[0-9]*/${USER}:\1:${USER_GID}/" /etc/group
|
||||||
@ -22,6 +30,13 @@ for FOLDER in /data/gitea/conf /data/gitea/log /data/git /data/ssh; do
|
|||||||
mkdir -p ${FOLDER}
|
mkdir -p ${FOLDER}
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if [ -f /data/gitea/conf/app.ini ]; then
|
||||||
|
echo "Found app.ini config file, migrating database"
|
||||||
|
chmod 644 /data/gitea/conf/app.ini
|
||||||
|
chown -R ${USER_UID}:${USER_GID} /data/git /data/gitea
|
||||||
|
su - ${USER} -c gitea migrate -c /data/gitea/conf/app.ini
|
||||||
|
fi
|
||||||
|
|
||||||
if [ $# -gt 0 ]; then
|
if [ $# -gt 0 ]; then
|
||||||
exec "$@"
|
exec "$@"
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user