From 4c104f511b2a68059d1f157527ede050a8e95a93 Mon Sep 17 00:00:00 2001 From: ahoemann Date: Mon, 21 Apr 2025 08:58:04 +0200 Subject: [PATCH] Update setup-main.sh --- setup-main.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/setup-main.sh b/setup-main.sh index 9e2e395..22a58be 100644 --- a/setup-main.sh +++ b/setup-main.sh @@ -1,12 +1,10 @@ #!/bin/sh -# Incase of pipefail stop the script -set -euo pipefail -if [ $SCRIPT -eq "debian-setup" ]; then +if [ $SCRIPT -eq "setup-ebian" ]; then wget -q -O - https://git.adrianux.net/ahoemann/Setup-Scripts/raw/branch/main/debian/setup-debian.sh | bash -elif [ $SCRIPT -eq "alpine-setup" ]; then - wget -q -O - https://git.adrianux.net/ahoemann/Setup-Scripts/raw/branch/main/alpine/setup-alpine.sh | bash +elif [ $SCRIPT -eq "vps-install-alpine" ]; then + wget -q -O - https://git.adrianux.net/ahoemann/Setup-Scripts/raw/branch/main/alpine/vps-install-alpine.sh | bash else echo $SCRIPT "is an invalid option." exit 1