Compare commits

..

No commits in common. "master" and "663bd36ed8d351a66a4c07ff36fae8315f75b6ba" have entirely different histories.

2 changed files with 18 additions and 42 deletions

4
doctor
View file

@ -1,4 +0,0 @@
#!/bin/bash
ACTION="$@"
su - git -c "cd /srv/gitea/bin ; /srv/gitea/bin/gitea doctor -c /etc/gitea/gitea.ini -w /srv/gitea/ -C /srv/gitea/custom $ACTION"

56
upgrade
View file

@ -4,7 +4,6 @@ set -ex
BINDIR=/srv/gitea/bin BINDIR=/srv/gitea/bin
GITEA_HOME=/srv/gitea GITEA_HOME=/srv/gitea
export GITEA_WORK_DIR=/srv/gitea
cd $BINDIR cd $BINDIR
@ -16,47 +15,28 @@ else
# Verify. # Verify.
if ./gitea --version | grep -q "version $VERSION " ; then if ./gitea --version | grep -q "version $VERSION " ; then
echo "Same version." echo "Same version."
else else
# Download the binary file. # Download.
wget https://codeberg.org/forgejo/forgejo/releases/download/v${VERSION}/forgejo-${VERSION}-linux-amd64 wget https://dl.gitea.io/gitea/$VERSION/gitea-$VERSION-linux-amd64
wget https://dl.gitea.io/gitea/$VERSION/gitea-$VERSION-linux-amd64.asc
wget https://dl.gitea.io/gitea/$VERSION/gitea-$VERSION-linux-amd64.sha256
sha256sum -c gitea-$VERSION-linux-amd64.sha256
# gpg --keyserver keys.openpgp.org --recv 7C9E68152594688862D62AF62D9AE806EC1592E2
gpg --verify gitea-$VERSION-linux-amd64.asc gitea-$VERSION-linux-amd64
# Check the binary file. # Stop.
wget https://codeberg.org/forgejo/forgejo/releases/download/v${VERSION}/forgejo-${VERSION}-linux-amd64.sha256 systemctl stop gitea
sha256sum -c forgejo-${VERSION}-linux-amd64.sha256
# Verify the binary file.
wget https://codeberg.org/forgejo/forgejo/releases/download/v${VERSION}/forgejo-${VERSION}-linux-amd64.asc
# gpg --keyserver keys.openpgp.org --recv EB114F5E6C0DC2BCDD183550A4B61A2DC5923710
gpg --verify forgejo-${VERSION}-linux-amd64.asc forgejo-${VERSION}-linux-amd64
# Flush queues. # Dump.
su - git -c "cd /srv/gitea/bin ; $BINDIR/gitea -c /etc/gitea/gitea.ini manager flush-queues" su - git -c "cd /srv/gitea/bin ; $BINDIR/gitea dump --tempdir $GITEA_HOME/tmp/ -c /etc/gitea/gitea.ini"
# Stop.
systemctl stop gitea
# Dump.
su - git -c "cd /srv/gitea/bin ; $BINDIR/gitea dump --tempdir $GITEA_HOME/tmp/ -c /etc/gitea/gitea.ini"
# Call doctor.
#su - git -c "cd /srv/gitea/bin ; $BINDIR/gitea doctor --all --fix -c /etc/gitea/gitea.ini"
#su - git -c "cd /srv/forgejo/bin ; $BINDIR/forgejo doctor --all --fix -c /etc/forgejo/forgejo.ini -C /srv/forgejo/custom -w /srv/forgejo/"
su - git -c "cd /srv/gitea/bin ; $BINDIR/gitea doctor check --all --fix -c /etc/gitea/gitea.ini -C /srv/gitea/custom -w /srv/gitea/"
# Upgrade. # Upgrade.
chmod u+x forgejo-$VERSION-linux-amd64 chmod u+x gitea-$VERSION-linux-amd64
chown git:gitea forgejo-$VERSION-linux-amd64 chown git.gitea gitea-$VERSION-linux-amd64
ln --force forgejo-$VERSION-linux-amd64 gitea ln --force gitea-$VERSION-linux-amd64 gitea
# Start. # Start.
#systemctl start gitea #systemctl start gitea
echo "Please, check then start the service Gitea."
read -e -p "Start Gitea service? [Y/n] " choice
if [[ "$choice" =~ ^[yY]$ ]]; then
echo "Restarting…"
systemctl start gitea
journalctl -f -u gitea
fi
fi fi
fi fi