From 23a97772061cdd8dad0e3512064dc6403d343f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Tue, 18 Apr 2023 20:45:57 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Einstall.sh=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index b10f302..39136fd 100644 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #!/bin/bash # Docker-aio ascii -curl https://git.moelle.space/hxcde/docker-auto-installer/raw/branch/main/ascii +curl https://git.moelle.space/hxcde/docker-aio/raw/branch/main/ascii # Check if script is being run as root if [ "$(id -u)" -ne 0 ]; then @@ -42,15 +42,15 @@ read -p "Do you want to install Docker? (y/n) " INSTALL_DOCKER if [ "$INSTALL_DOCKER" = "y" ]; then echo "Installing Docker ..." if [ "$PACKAGE_MANAGER" = "apt-get" ]; then - bash -c "$(curl -L https://git.moelle.space/hxcde/docker-auto-installer/raw/branch/main/debian.sh)" + 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-auto-installer/raw/branch/main/ubuntu.sh)" + bash -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/ubuntu.sh)" elif [ "$PACKAGE_MANAGER" = "zypper" ]; then - sh -c "$(curl -L https://git.moelle.space/hxcde/docker-auto-installer/raw/branch/main/opensuse.sh)" + sh -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/opensuse.sh)" elif [ "$PACKAGE_MANAGER" = "apk" ]; then - sh -c "$(curl -L https://git.moelle.space/hxcde/docker-auto-installer/raw/branch/main/alpine.sh)" + sh -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/alpine.sh)" elif [ "$PACKAGE_MANAGER" = "yum" ]; then - bash -c "$(curl -L https://git.moelle.space/hxcde/docker-auto-installer/raw/branch/main/centos.sh)" + bash -c "$(curl -L https://git.moelle.space/hxcde/docker-aio/raw/branch/main/centos.sh)" fi fi