Compare commits

...

3 Commits

3 changed files with 34 additions and 0 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@
node_modules/
# gdb logs aren't needed eihter
gdb.txt
# Kate does .kate-swp
*.*swp

1
bash/.gitignore vendored
View File

@ -2,3 +2,4 @@
*.png
*.jpg
*.jpeg
forgejo-*

31
bash/download-forgejo.bash Executable file
View File

@ -0,0 +1,31 @@
#!/usr/bin/env bash
VERSION=1.18.3-2
PLATFORM=linux-amd64
# If the signature is already downloaded, don't redownload it
if [ -f "forgejo-$VERSION-$PLATFORM.asc" ]
then
printf "Forĝejo signature already downloaded.\n"
else
printf "Downloading Forĝejo $VERSION-$PLATFORM signature…\n"
curl -LO "https://codeberg.org/forgejo/forgejo/releases/download/v$VERSION/forgejo-$VERSION-$PLATFORM.asc"
fi
# If the binary is already downloaded, don't redownload it
if [ -f "forgejo-$VERSION-$PLATFORM" ]
then
printf "Forĝejo already downloaded.\n"
else
printf "Downloading Forĝejo $VERSION on $PLATFORM…\n"
curl -LO "https://codeberg.org/forgejo/forgejo/releases/download/v$VERSION/forgejo-$VERSION-$PLATFORM"
fi
# The last easy to automate part.
printf "Verifying signature…\n"
gpg --verify forgejo-$VERSION-$PLATFORM.asc
printf "Final steps: \n\t 1. Place the binary where the systemd service expects it.\n\t \
2. sudo chmod a+rx forgejo-$VERSION-$PLATFORM\n\t \
3. sudo ln -sf forgejo-$VERSION-$PLATFORM gitea \n\t \
4. sudo systemctl restart gitea"
echo