diff --git a/Scripts/base.sh b/Scripts/base.sh index 1a8221c..ec34836 100644 --- a/Scripts/base.sh +++ b/Scripts/base.sh @@ -138,6 +138,7 @@ is_wsl() { # Package Installation PACKAGES=( curl wget git sudo + rsync zsh tmux unzip tar gzip build-essential diff --git a/Scripts/provision.sh b/Scripts/provision.sh index d642791..a566911 100644 --- a/Scripts/provision.sh +++ b/Scripts/provision.sh @@ -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}"