Add rsync to setup packages

This commit is contained in:
MangoPig
2026-06-05 17:38:59 +01:00
parent a596a2d527
commit d79cb9a62b
2 changed files with 4 additions and 3 deletions

View File

@@ -138,6 +138,7 @@ is_wsl() {
# Package Installation
PACKAGES=(
curl wget git sudo
rsync
zsh tmux
unzip tar gzip
build-essential

View File

@@ -36,11 +36,11 @@ fi
echo -e "${YELLOW}LOG: Updating system and installing base tools...${NC}"
if is_arch_family; then
pacman -Sy --noconfirm git make curl zsh sudo
pacman -Sy --noconfirm git make curl rsync zsh sudo
SUDO_GROUP="wheel"
elif is_debian_family; then
apt-get update
apt-get install -y git make curl sudo zsh
apt-get install -y git make curl rsync sudo zsh
SUDO_GROUP="sudo"
elif is_fedora_family; then
if is_atomic_fedora; then
@@ -49,7 +49,7 @@ elif is_fedora_family; then
exit 1
fi
dnf install -y git make curl sudo zsh
dnf install -y git make curl rsync sudo zsh
SUDO_GROUP="wheel"
else
echo -e "${RED}Unsupported OS: $OS${NC}"