Skip to content

Commit

Permalink
fix bug and update to the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
EndMove committed Nov 4, 2022
1 parent 763edd9 commit 99b2916
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CONTROL/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version: 1.17.3.r01
- Update Gitea to 1.17.3, release notes (https://github.com/go-gitea/gitea/releases/tag/v1.17.3).
- Fix now use default asustor server localtime.
- Fix reload command typo.
- Fix now ensures that the configuration is saved even if it is busy.

Version: 1.17.2.r02
- Fix multi volume support by jonmseaman.
- Fix admin gid, uid auto detection.
Expand Down
2 changes: 1 addition & 1 deletion CONTROL/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"general":{
"package":"gitea-docker",
"name":"Gitea",
"version":"1.17.2.r02",
"version":"1.17.3.r01",
"depends":[
"docker-ce(>=20.10.17.r1)"
],
Expand Down
2 changes: 1 addition & 1 deletion CONTROL/description-fr.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Gitea est une solution Opensource d'hébergement de code léger et rapide écrite en Go. Elle est publiée sous la licence MIT.
Version actuelle de Gitea : 1.17.2 - Fonctionne avec une connexion HTTPS.
Version actuelle de Gitea : 1.17.3 - Fonctionne avec une connexion HTTPS.


[INFORMATION]
Expand Down
2 changes: 1 addition & 1 deletion CONTROL/description.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Gitea is an Opensource solution for lightweight and fast code hosting written in Go. It is published under the MIT license.
Gitea current version: 1.17.2 - Work with an HTTPS connection.
Gitea current version: 1.17.3 - Work with an HTTPS connection.


[INFORMATION]
Expand Down
3 changes: 2 additions & 1 deletion CONTROL/post-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [ -d ${GITEA_DATA_PATH}${GITEA_CONFIG_PATH} ]; then
if [ "$APKG_PKG_STATUS" = 'upgrade' ]; then
# Saving the configuration
echo "gitea-adm: Saving configuration (app.ini.old)..."
cp app.ini app.ini.old
cp -f app.ini app.ini.old
fi

# Integrity check
Expand All @@ -45,6 +45,7 @@ docker create -i -t --name=$GITEA_CONTAINER \
--restart=unless-stopped \
--volume $GITEA_DATA_PATH:/data \
--volume /usr/builtin/etc/certificate/:/ssl/:ro \
--volume /etc/localtime:/etc/localtime:ro \
gitea/gitea:$GITEA_VERSION

echo "gitea-adm: Installation/Update complete"
Expand Down
2 changes: 1 addition & 1 deletion CONTROL/start-stop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ case "$1" in
docker stop $GITEA_CONTAINER
sleep 3
;;
relaod)
reload)
# Reloading gitea
echo "gitea-adm: Reloading service..."
docker stop $GITEA_CONTAINER
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gitea-adm

__Gitea version__: _`1.17.2`_
__Gitea version__: _`1.17.3`_

![GitHub license](https://img.shields.io/badge/license-GPL--3.0-%23fe7d37) ![GitHub last commit](https://img.shields.io/github/last-commit/EndMove/gitea-adm)

Expand Down
2 changes: 1 addition & 1 deletion gitea_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.17.2
1.17.3

0 comments on commit 99b2916

Please sign in to comment.