From: Fred Hamster Date: Sat, 14 Dec 2024 22:24:13 +0000 (-0500) Subject: added gparted to prep X-Git-Tag: 2.140.189^2~82 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=528c0f7945b3b449a4f393d79bd8515e8662092f;p=feisty_meow.git added gparted to prep --- 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_codes.sh deleted file mode 100644 index c422492d..00000000 --- a/scripts/customize/fred/scripts/jobby/mirror_codes.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -# get the uva codes. -mkdir -p ~/data/code_depot/uva_codes/ -rsync -avz --del cak0l@clambook:apps/* ~/data/code_depot/uva_codes/ - diff --git a/scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh b/scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh new file mode 100644 index 00000000..c422492d --- /dev/null +++ b/scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# get the uva codes. +mkdir -p ~/data/code_depot/uva_codes/ +rsync -avz --del cak0l@clambook:apps/* ~/data/code_depot/uva_codes/ +