349 lines
9.3 KiB
Bash
Executable File
349 lines
9.3 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
##########################
|
|
# Color helpers
|
|
##########################
|
|
tput_reset() { tput sgr0; }
|
|
tput_black() { tput setaf 0; }
|
|
tput_red() { tput setaf 1; }
|
|
tput_green() { tput setaf 2; }
|
|
tput_yellow() { tput setaf 3; }
|
|
tput_cyan() { tput setaf 4; }
|
|
tput_purple() { tput setaf 5; }
|
|
tput_cyan() { tput setaf 6; }
|
|
tput_gray() { tput setaf 7; }
|
|
|
|
##########################
|
|
# Use exported variables from main detection script
|
|
##########################
|
|
OS="${DETECTED_OS}"
|
|
DDE="${DETECTED_DE}"
|
|
DE="${SELECTED_DE:-none}"
|
|
TWM="${SELECTED_TWM:-none}"
|
|
INSTALL_LEVEL="${INSTALL_LEVEL:-minimal}"
|
|
|
|
tput_cyan
|
|
echo
|
|
echo "Starting Debian setup..."
|
|
tput_reset
|
|
echo
|
|
echo "DE: $DE, TWM: $TWM, Install Level: $INSTALL_LEVEL"
|
|
|
|
##########################
|
|
# 0. Ensure curl is installed
|
|
##########################
|
|
if ! command -v curl >/dev/null 2>&1; then
|
|
tput_yellow
|
|
echo
|
|
echo "curl is not installed. Installing..."
|
|
tput_reset
|
|
sudo apt update
|
|
sudo apt -y install curl
|
|
fi
|
|
|
|
##########################
|
|
# 1. Add contrib and non-free if missing
|
|
##########################
|
|
tput_yellow
|
|
echo
|
|
echo "Checking /etc/apt/sources.list for contrib/non-free..."
|
|
tput_reset
|
|
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak.$(date +%s)
|
|
sudo sed -i -r 's/^(deb\s+\S+\s+\S+)\s+(main)$/\1 main contrib non-free/' /etc/apt/sources.list
|
|
tput_green
|
|
echo
|
|
echo "Updated sources.list to include contrib/non-free where needed."
|
|
tput_reset
|
|
|
|
##########################
|
|
# 1a. Check for archive.debian.org and update to deb.debian.org (only if Bullseye or newer)
|
|
##########################
|
|
CURRENT_CODENAME=$(grep -Po 'deb\s+\S+\s+\K\S+' /etc/apt/sources.list | grep -E '^(buster|bullseye|bookworm|trixie)$' | head -n1)
|
|
DEBIAN_ORDER=(buster bullseye bookworm trixie)
|
|
|
|
# Function to get numeric index of codename
|
|
codename_index() {
|
|
local code="$1"
|
|
for i in "${!DEBIAN_ORDER[@]}"; do
|
|
[[ "${DEBIAN_ORDER[$i]}" == "$code" ]] && echo "$i" && return
|
|
done
|
|
echo -1
|
|
}
|
|
|
|
CURRENT_INDEX=$(codename_index "$CURRENT_CODENAME")
|
|
BULLSEYE_INDEX=$(codename_index "bullseye")
|
|
|
|
if [[ "$CURRENT_INDEX" -ge "$BULLSEYE_INDEX" ]] && grep -q "archive.debian.org" /etc/apt/sources.list; then
|
|
tput_yellow
|
|
echo
|
|
echo "Found archive.debian.org in sources.list and system is Bullseye or newer, updating to deb.debian.org..."
|
|
tput_reset
|
|
sudo sed -i -r 's|archive\.debian\.org|deb.debian.org|g' /etc/apt/sources.list
|
|
tput_green
|
|
echo
|
|
echo "Updated sources.list to use deb.debian.org."
|
|
tput_reset
|
|
fi
|
|
|
|
##########################
|
|
# 2. Full update and upgrade
|
|
##########################
|
|
tput_yellow
|
|
echo
|
|
echo "Updating package lists..."
|
|
tput_reset
|
|
sudo apt update
|
|
|
|
# Autoremove before full-upgrade
|
|
AUTOREMOVE_PENDING=$(apt -s autoremove | grep -E 'Remv' || true)
|
|
if [[ -n "$AUTOREMOVE_PENDING" ]]; then
|
|
tput_yellow
|
|
echo
|
|
echo "Removing packages that are no longer required before upgrade..."
|
|
tput_reset
|
|
sudo apt -y autoremove
|
|
fi
|
|
|
|
tput_yellow
|
|
echo
|
|
echo "Upgrading installed packages..."
|
|
tput_reset
|
|
sudo apt -y full-upgrade
|
|
|
|
# Autoremove after full-upgrade
|
|
AUTOREMOVE_PENDING=$(apt -s autoremove | grep -E 'Remv' || true)
|
|
if [[ -n "$AUTOREMOVE_PENDING" ]]; then
|
|
tput_yellow
|
|
echo
|
|
echo "Removing packages that are no longer required after upgrade..."
|
|
tput_reset
|
|
sudo apt -y autoremove
|
|
fi
|
|
|
|
UPGRADE_PENDING=$(apt list --upgradable 2>/dev/null | grep -v Listing || true)
|
|
if [[ -n "$UPGRADE_PENDING" ]]; then
|
|
tput_red
|
|
echo
|
|
echo "Some packages were upgraded. A reboot is recommended before continuing."
|
|
tput_reset
|
|
read -rp "Reboot now? [y/N]: " reboot_choice
|
|
case "${reboot_choice,,}" in
|
|
y|yes)
|
|
tput_red
|
|
echo
|
|
echo "Rebooting now. After reboot, please restart this script to continue..."
|
|
tput_reset
|
|
sudo reboot
|
|
;;
|
|
*)
|
|
tput_yellow
|
|
echo
|
|
echo "Skipping reboot. Make sure to reboot manually before continuing upgrades."
|
|
tput_reset
|
|
exit 0
|
|
;;
|
|
esac
|
|
else
|
|
tput_green
|
|
echo
|
|
echo "All packages are up to date. Continuing to Debian major version check..."
|
|
tput_reset
|
|
fi
|
|
|
|
##########################
|
|
# 3. Stepwise major version upgrade
|
|
##########################
|
|
DEBIAN_SEQUENCE=(buster bullseye bookworm trixie)
|
|
CURRENT_CODENAME=$(grep -Po 'deb\s+\S+\s+\K\S+' /etc/apt/sources.list | grep -E '^(buster|bullseye|bookworm|trixie)$' | head -n1)
|
|
LATEST_CODENAME=${DEBIAN_SEQUENCE[-1]}
|
|
|
|
tput_cyan
|
|
echo
|
|
echo "Current codename: $CURRENT_CODENAME"
|
|
echo "Latest stable codename: $LATEST_CODENAME"
|
|
tput_reset
|
|
|
|
while [[ "$CURRENT_CODENAME" != "$LATEST_CODENAME" ]]; do
|
|
NEXT_CODENAME=""
|
|
for i in "${!DEBIAN_SEQUENCE[@]}"; do
|
|
if [[ "${DEBIAN_SEQUENCE[$i]}" == "$CURRENT_CODENAME" ]]; then
|
|
NEXT_CODENAME="${DEBIAN_SEQUENCE[$((i+1))]}"
|
|
break
|
|
fi
|
|
done
|
|
|
|
if [[ -z "$NEXT_CODENAME" ]]; then
|
|
tput_red
|
|
echo
|
|
echo "Error: Cannot determine next codename after $CURRENT_CODENAME"
|
|
tput_reset
|
|
exit 1
|
|
fi
|
|
|
|
tput_yellow
|
|
echo
|
|
echo "Detected codename $CURRENT_CODENAME, next stable version: $NEXT_CODENAME"
|
|
tput_reset
|
|
read -rp "Do you want to upgrade to $NEXT_CODENAME? [y/N]: " choice
|
|
case "${choice,,}" in
|
|
y|yes)
|
|
tput_yellow
|
|
echo
|
|
echo "Updating sources.list to $NEXT_CODENAME..."
|
|
tput_reset
|
|
sudo sed -i -r "s/\b$CURRENT_CODENAME\b/$NEXT_CODENAME/g" /etc/apt/sources.list
|
|
|
|
tput_yellow
|
|
echo
|
|
echo "Updating packages..."
|
|
tput_reset
|
|
sudo apt update
|
|
|
|
# Autoremove before full-upgrade
|
|
AUTOREMOVE_PENDING=$(apt -s autoremove | grep -E 'Remv' || true)
|
|
if [[ -n "$AUTOREMOVE_PENDING" ]]; then
|
|
tput_yellow
|
|
echo
|
|
echo "Removing packages that are no longer required before upgrade..."
|
|
tput_reset
|
|
sudo apt -y autoremove
|
|
fi
|
|
|
|
sudo apt -y full-upgrade
|
|
|
|
# Autoremove after full-upgrade
|
|
AUTOREMOVE_PENDING=$(apt -s autoremove | grep -E 'Remv' || true)
|
|
if [[ -n "$AUTOREMOVE_PENDING" ]]; then
|
|
tput_yellow
|
|
echo
|
|
echo "Removing packages that are no longer required after upgrade..."
|
|
tput_reset
|
|
sudo apt -y autoremove
|
|
fi
|
|
|
|
tput_green
|
|
echo
|
|
echo "Upgrade to $NEXT_CODENAME complete. A reboot is recommended."
|
|
tput_reset
|
|
read -rp "Press Enter to reboot..." _
|
|
sudo reboot
|
|
;;
|
|
*)
|
|
tput_yellow
|
|
echo
|
|
echo "Skipping upgrade to $NEXT_CODENAME. Continuing with current version."
|
|
tput_reset
|
|
break
|
|
;;
|
|
esac
|
|
|
|
CURRENT_CODENAME=$(grep -Po 'deb\s+\S+\s+\K\S+' /etc/apt/sources.list | grep -E '^(buster|bullseye|bookworm|trixie)$' | head -n1)
|
|
done
|
|
|
|
tput_green
|
|
echo
|
|
echo "Debian is now at codename $CURRENT_CODENAME. Continuing with DE/TWM installation..."
|
|
tput_reset
|
|
|
|
##########################
|
|
# 4. Desktop Environment installation
|
|
##########################
|
|
case "$DE" in
|
|
xfce|plasma|gnome)
|
|
tput_yellow
|
|
echo
|
|
echo "Preparing to install $DE..."
|
|
tput_reset
|
|
|
|
# Run DE-specific script dynamically
|
|
SCRIPT_NAME="${OS}-${DE}.sh"
|
|
if [[ -f "$SCRIPT_NAME" ]]; then
|
|
tput_cyan
|
|
echo
|
|
echo "Running $SCRIPT_NAME..."
|
|
tput_reset
|
|
bash "$SCRIPT_NAME"
|
|
else
|
|
tput_red
|
|
echo
|
|
echo "Error: $SCRIPT_NAME not found!"
|
|
tput_reset
|
|
exit 1
|
|
fi
|
|
;;
|
|
none)
|
|
tput_gray
|
|
echo
|
|
echo "No Desktop Environment selected, skipping DE installation."
|
|
tput_reset
|
|
;;
|
|
esac
|
|
|
|
##########################
|
|
# 5. Tiling Window Manager installation
|
|
##########################
|
|
case "$TWM" in
|
|
chadwm|hyprland)
|
|
tput_yellow
|
|
echo
|
|
echo "Installing CHADWM..."
|
|
tput_reset
|
|
|
|
# Run TWM-specific script dynamically
|
|
SCRIPT_NAME="${OS}-${TWM}.sh"
|
|
if [[ -f "$SCRIPT_NAME" ]]; then
|
|
tput_cyan
|
|
echo
|
|
echo "Running $SCRIPT_NAME..."
|
|
tput_reset
|
|
bash "$SCRIPT_NAME"
|
|
else
|
|
tput_red
|
|
echo
|
|
echo "Error: $SCRIPT_NAME not found!"
|
|
tput_reset
|
|
exit 1
|
|
fi
|
|
;;
|
|
none)
|
|
tput_gray
|
|
echo
|
|
echo "No tiling window manager selected."
|
|
tput_reset
|
|
;;
|
|
esac
|
|
|
|
##########################
|
|
# 6. Installation level handling
|
|
##########################
|
|
case "$INSTALL_LEVEL" in
|
|
minimal|full|workstation|server)
|
|
tput_cyan
|
|
echo
|
|
echo "Minimal installation selected."
|
|
tput_reset
|
|
|
|
# Run Installation Level-specific script dynamically
|
|
SCRIPT_NAME="${OS}-${INSTALL_LEVEL}.sh"
|
|
if [[ -f "$SCRIPT_NAME" ]]; then
|
|
tput_cyan
|
|
echo
|
|
echo "Running $SCRIPT_NAME..."
|
|
tput_reset
|
|
bash "$SCRIPT_NAME"
|
|
else
|
|
tput_red
|
|
echo
|
|
echo "Error: $SCRIPT_NAME not found!"
|
|
tput_reset
|
|
exit 1
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
tput_green
|
|
echo
|
|
echo "Debian setup complete."
|
|
tput_reset
|