linutil/src/commands/system-update.sh
mendres82 3980537e2a Changed zypper update
- Changed to use zypper dup, because that's the way to update openSUSE Tumbleweed and Slowroll installs
2024-07-16 00:24:02 +02:00

146 lines
4.4 KiB
Bash
Executable File

#!/bin/sh -e
RC='\033[0m'
RED='\033[31m'
YELLOW='\033[33m'
GREEN='\033[32m'
command_exists() {
which $1 >/dev/null 2>&1
}
checkEnv() {
## Check for requirements.
REQUIREMENTS='curl groups sudo'
for req in ${REQUIREMENTS}; do
if ! command_exists ${req}; then
printf "${RED}To run me, you need: ${REQUIREMENTS}${RC}\n"
exit 1
fi
done
## Check Package Handler
PACKAGEMANAGER='apt-get nala dnf pacman zypper yum'
for pgm in ${PACKAGEMANAGER}; do
if command_exists ${pgm}; then
PACKAGER=${pgm}
printf "Using ${pgm}\n"
break
fi
done
if [ -z "${PACKAGER}" ]; then
printf "${RED}Can't find a supported package manager${RC}\n"
exit 1
fi
## Check SuperUser Group
SUPERUSERGROUP='wheel sudo root'
for sug in ${SUPERUSERGROUP}; do
if groups | grep ${sug} >/dev/null; then
SUGROUP=${sug}
printf "Super user group ${SUGROUP}\n"
break
fi
done
## Check if member of the sudo group.
if ! groups | grep ${SUGROUP} >/dev/null; then
printf "${RED}You need to be a member of the sudo group to run me!${RC}\n"
exit 1
fi
DTYPE="unknown" # Default to unknown
# Use /etc/os-release for modern distro identification
if [ -f /etc/os-release ]; then
. /etc/os-release
DTYPE=$ID
fi
}
fastUpdate() {
case ${PACKAGER} in
pacman)
if ! command_exists yay && ! command_exists paru; then
printf "Installing yay as AUR helper...\n"
sudo ${PACKAGER} --noconfirm -S base-devel || { printf "${RED}Failed to install base-devel${RC}\n"; exit 1; }
cd /opt && sudo git clone https://aur.archlinux.org/yay-git.git && sudo chown -R ${USER}:${USER} ./yay-git
cd yay-git && makepkg --noconfirm -si || { printf "${RED}Failed to install yay${RC}\n"; exit 1; }
else
printf "Aur helper already installed\n"
fi
if command_exists yay; then
AUR_HELPER="yay"
elif command_exists paru; then
AUR_HELPER="paru"
else
printf "No AUR helper found. Please install yay or paru.\n"
exit 1
fi
${AUR_HELPER} --noconfirm -S rate-mirrors-bin
sudo cp /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.bak
# If for some reason DTYPE is still unknown use always arch so the rate-mirrors does not fail
dtype_local=${DTYPE}
if [ "${DTYPE}" = "unknown" ]; then
dtype_local="arch"
fi
sudo rate-mirrors --top-mirrors-number-to-retest=5 --disable-comments --save /etc/pacman.d/mirrorlist --allow-root ${dtype_local}
;;
apt-get|nala)
sudo apt-get update
if ! command_exists nala; then
sudo apt-get install -y nala || { printf "${YELLOW}Falling back to apt-get${RC}\n"; PACKAGER="apt-get"; }
fi
if [ "${PACKAGER}" = "nala" ]; then
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo nala update
PACKAGER="nala"
fi
sudo ${PACKAGER} upgrade -y
;;
dnf)
sudo ${PACKAGER} update -y
;;
zypper)
sudo ${PACKAGER} ref
sudo ${PACKAGER} --non-interactive dup
;;
yum)
sudo ${PACKAGER} update -y
sudo ${PACKAGER} upgrade -y
;;
*)
printf "${RED}Unsupported package manager: ${PACKAGER}${RC}\n"
exit 1
;;
esac
}
updateSystem() {
printf "${GREEN}Updating system${RC}\n"
case ${PACKAGER} in
nala|apt-get)
sudo ${PACKAGER} update -y
sudo ${PACKAGER} upgrade -y
;;
yum|dnf)
sudo ${PACKAGER} update -y
sudo ${PACKAGER} upgrade -y
;;
pacman)
sudo ${PACKAGER} -Syu --noconfirm
;;
zypper)
sudo ${PACKAGER} ref
sudo ${PACKAGER} --non-interactive dup
;;
*)
printf "${RED}Unsupported package manager: ${PACKAGER}${RC}\n"
exit 1
;;
esac
}
checkEnv
fastUpdate
updateSystem