11 lines
No EOL
378 B
Bash
11 lines
No EOL
378 B
Bash
#!/bin/sh
|
|
|
|
|
|
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 "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
|
|
fi |