Moved all scripts into the scripts folder

This commit is contained in:
Mathias Wagner
2024-05-18 19:13:36 +02:00
parent a17a23d719
commit 93b3a6e50d
6 changed files with 10 additions and 13 deletions

View File

@@ -16,17 +16,14 @@ Hier wird die Einrichtung für Linux beschrieben. MySpeed lässt sich über vers
```
## Automatische Installation
!!! tip "Tipp"
Du möchtest MySpeed unter einem bestimmten Pfad installieren? Dann setze doch einfach den Parameter `-d /dein/installations/pfad` hinter den Befehl
=== "Stabile Version"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s --
bash <(curl -sSL https://install.myspeed.dev)
```
=== "Entwicklungsversion"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- --beta
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh | bash -s -- --beta
```
## Automatischer Deinstallationsprozess
@@ -37,12 +34,12 @@ Keine Lust mehr? Du kannst MySpeed ganz einfach wieder entfernen. Entscheide hie
=== "Daten behalten"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash -s -- --keep-data
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash -s -- --keep-data
```
=== "Daten löschen"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash
```
## Manuelle Installation

View File

@@ -21,12 +21,12 @@ Here the setup for Linux is described. MySpeed can be installed in several ways.
=== "Stable Version"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s --
bash <(curl -sSL https://install.myspeed.dev)
```
=== "Development Version"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- --beta
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh | bash -s -- --beta
```
## Automatic uninstall process
@@ -37,12 +37,12 @@ Don't want to use MySpeed anymore? You can easily remove MySpeed. Decide here if
=== "Keep data"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash -s -- --keep-data
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash -s -- --keep-data
```
=== "Delete data"
```sh
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash
```
## Manual installation

View File

@@ -26,11 +26,11 @@ read -p "Enter your choice (1/2): " choice
case $choice in
1)
echo -e "${BLUE}Running Docker installation script...${NORMAL}"
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/docker-install.sh)
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/docker-install.sh)
;;
2)
echo -e "${BLUE}Running normal installation script...${NORMAL}"
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh)
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh)
;;
*)
echo -e "${RED}Invalid choice. Exiting.${NORMAL}"