Add rsync to setup packages
This commit is contained in:
@@ -138,6 +138,7 @@ is_wsl() {
|
||||
# Package Installation
|
||||
PACKAGES=(
|
||||
curl wget git sudo
|
||||
rsync
|
||||
zsh tmux
|
||||
unzip tar gzip
|
||||
build-essential
|
||||
|
||||
@@ -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}"
|
||||
|
||||
Reference in New Issue
Block a user