executable_install-fedora.sh aktualisiert

This commit is contained in:
Simon Rieger 2025-04-17 18:43:46 +02:00
parent 8d4edd45c0
commit a1a2d6795b

View file

@ -88,3 +88,15 @@ if [[ ! -f /usr/bin/cliphist ]]; then
else
echo "cliphist ist bereits installiert, überspringe Download"
fi
# MinIO Client mit Prüfung
if [[ ! -f $HOME/minio-binaries/mc ]]; then
curl https://dl.min.io/client/mc/release/linux-amd64/mc \
--create-dirs \
-o $HOME/minio-binaries/mc
echo "MinIO Client wurde auf dem System installiert"
else
echo "MinIO Client ist bereits installiert, überspringe Download"
fi
echo "Installationscript abgeschlossen!!!"