From 528c0f7945b3b449a4f393d79bd8515e8662092f Mon Sep 17 00:00:00 2001 From: Fred Hamster Date: Sat, 14 Dec 2024 17:24:13 -0500 Subject: [PATCH] added gparted to prep --- scripts/core/prep_feisty_host.sh | 10 +++++----- .../jobby/{mirror_codes.sh => mirror_uva_codes.sh} | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename scripts/customize/fred/scripts/jobby/{mirror_codes.sh => mirror_uva_codes.sh} (100%) diff --git a/scripts/core/prep_feisty_host.sh b/scripts/core/prep_feisty_host.sh index fbb37cb2..37e48449 100644 --- a/scripts/core/prep_feisty_host.sh +++ b/scripts/core/prep_feisty_host.sh @@ -107,12 +107,12 @@ echo "installing for darwin" elif whichable apt; then # ubuntu or debian or other apt-based OSes... echo "installing for apt" - sudo apt install "${packages[@]}" + sudo apt -y install "${packages[@]}" return $? elif whichable yum; then # rpm based with yum available... echo "installing for yum" - sudo yum install "${packages[@]}" + sudo yum -y install "${packages[@]}" return $? elif [ "$OS" == "Windows_NT" ]; then # windows-based with cygwin (or we'll fail out currently). @@ -196,13 +196,13 @@ PAX=(noop) PHASE_MESSAGE="installing crucial OS packages" if [ "$opsystem_here" == "debianesque" ]; then - PAX=(openssh-server ) + PAX=(gparted openssh-server ) elif [ "$opsystem_here" == "redhatty" ]; then - PAX=(openssh-server ) + PAX=(gparted openssh-server ) elif [ "$opsystem_here" == "macos" ]; then PAX=(openssh-server ) elif [ "$opsystem_here" == "windoze" ]; then - PAX=(openssh-server ) + PAX=(gparted openssh-server ) fi install_system_package "${PAX[@]}" diff --git a/scripts/customize/fred/scripts/jobby/mirror_codes.sh b/scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh similarity index 100% rename from scripts/customize/fred/scripts/jobby/mirror_codes.sh rename to scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh -- 2.34.1