From fe95738f3d2a6205ae8167b117694e2cd5a167f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Fri, 13 Oct 2023 08:55:59 +0200 Subject: [PATCH] install.sh aktualisiert --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 39136fd..67fbe3c 100644 --- a/install.sh +++ b/install.sh @@ -18,6 +18,9 @@ if [ -f /etc/os-release ]; then elif [ "$ID" = "opensuse" ]; then echo "Detected openSUSE." PACKAGE_MANAGER="zypper" + elif [ "$ID" = "raspbian" ]; then + echo "Detected Raspbian." + PACKAGE_MANAGER="apt-get-raspbian" elif [ "$ID" = "debian" ]; then echo "Detected Debian." PACKAGE_MANAGER="apt-get" @@ -45,6 +48,8 @@ if [ "$INSTALL_DOCKER" = "y" ]; then bash -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/debian.sh)" elif [ "$PACKAGE_MANAGER" = "apt-get-ubuntu" ]; then bash -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/ubuntu.sh)" + elif [ "$PACKAGE_MANAGER" = "apt-get-raspbian" ]; then + bash -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/raspbian.sh)" elif [ "$PACKAGE_MANAGER" = "zypper" ]; then sh -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/opensuse.sh)" elif [ "$PACKAGE_MANAGER" = "apk" ]; then