feat: prevent reinstall and upragde if available

This commit is contained in:
Julien Oculi 2024-05-30 13:10:20 +02:00
parent 1215d25186
commit cf1191bdc3
3 changed files with 53 additions and 41 deletions

View file

@ -1,9 +1,12 @@
# Check if already installed
if [[ $(which caddy) != "/usr/bin/caddy" ]]; then
# Install prerequistes
nala install -y debian-keyring debian-archive-keyring apt-transport-https curl
# Install sources and keys
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
fi
# Install caddy
# Install or upgrade caddy
nala install -y caddy

View file

@ -1,6 +1,8 @@
# Get latest forgejo tag
LATEST=curl -fsS https://codeberg.org/forgejo/forgejo/releases/latest | grep -o "[0-9].[0-9].[0-9]"
LATEST=curl -fsS https://codeberg.org/forgejo/forgejo/releases/latest | grep -o "[0-9].[0-9].[0-9]" | head -1
# Check if already installed
if [[ $(forgejo -v 2> /dev/null | grep -o "[0-9].[0-9].[0-9]" | head -1) != $LATEST ]]; then
# Download forgejo
wget "https://codeberg.org/forgejo/forgejo/releases/download/$LATEST/forgejo-$LATEST-linux-amd64"
chmod +x "forgejo-$LATEST-linux-amd64"
@ -23,6 +25,7 @@ useradd --system \
# Setup forgejo directories
mv "forgejo-$LATEST-linux-amd64" /usr/local/bin/forgejo
fi
## Working directory
mkdir /var/lib/forgejo

View file

@ -1,3 +1,8 @@
# Check if already installed
if [[ $(which deno) == "/usr/local/bin/deno" ]]; then
# Upgrade deno
deno upgrade
else
# Install deno
curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
@ -11,6 +16,7 @@ useradd --system \
--shell /usr/sbin/nologin \
--comment "Deno js engine" \
deno
fi
# Clone website repo
mkdir -p /srv/www