mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-08-17 20:07:20 +02:00
Compare commits
3 Commits
84e7d4fb00
...
c532e88f38
Author | SHA1 | Date | |
---|---|---|---|
c532e88f38 | |||
d65e51acb4 | |||
1f29857a2f |
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,3 +4,5 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
# gdb logs aren't needed eihter
|
# gdb logs aren't needed eihter
|
||||||
gdb.txt
|
gdb.txt
|
||||||
|
# Kate does .kate-swp
|
||||||
|
*.*swp
|
||||||
|
1
bash/.gitignore
vendored
1
bash/.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
*.png
|
*.png
|
||||||
*.jpg
|
*.jpg
|
||||||
*.jpeg
|
*.jpeg
|
||||||
|
forgejo-*
|
||||||
|
31
bash/download-forgejo.bash
Executable file
31
bash/download-forgejo.bash
Executable 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
|
Loading…
x
Reference in New Issue
Block a user