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 # Package Installation
PACKAGES=( PACKAGES=(
curl wget git sudo curl wget git sudo
rsync
zsh tmux zsh tmux
unzip tar gzip unzip tar gzip
build-essential build-essential

View File

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