install scrpts

This commit is contained in:
Mateusz Gruszczyński
2026-05-31 08:44:22 +02:00
parent 6f2c266e7c
commit ce0edc2e39
10 changed files with 526 additions and 114 deletions
+2
View File
@@ -41,6 +41,8 @@ prepare_downloader() {
dnf install -y ca-certificates curl tar gzip python3 sudo
elif command_exists yum; then
yum install -y ca-certificates curl tar gzip python3 sudo
elif command_exists pacman; then
pacman -Sy --noconfirm --needed ca-certificates curl tar gzip python sudo
fi
if command_exists curl; then DOWNLOADER="curl"; return; fi
if command_exists wget; then DOWNLOADER="wget"; return; fi