mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-25 14:30:11 +00:00
1dea0c2391
i know that's not perfect. the best i can come up with right now.
146 lines
4.1 KiB
Bash
146 lines
4.1 KiB
Bash
#!/bin/sh -e
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
RC='\033[0m'
|
|
RED='\033[31m'
|
|
YELLOW='\033[33m'
|
|
CYAN='\033[36m'
|
|
GREEN='\033[32m'
|
|
|
|
command_exists() {
|
|
command -v "$1" >/dev/null 2>&1
|
|
}
|
|
|
|
checkAURHelper() {
|
|
## Check & Install AUR helper
|
|
if [ "$PACKAGER" = "pacman" ]; then
|
|
if [ -z "$AUR_HELPER_CHECKED" ]; then
|
|
AUR_HELPERS="yay paru"
|
|
for helper in ${AUR_HELPERS}; do
|
|
if command_exists "${helper}"; then
|
|
AUR_HELPER=${helper}
|
|
printf "%b\n" "${CYAN}Using ${helper} as AUR helper${RC}"
|
|
AUR_HELPER_CHECKED=true
|
|
return 0
|
|
fi
|
|
done
|
|
|
|
printf "%b\n" "${YELLOW}Installing yay as AUR helper...${RC}"
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm base-devel git
|
|
cd /opt && "$ESCALATION_TOOL" git clone https://aur.archlinux.org/yay-bin.git && "$ESCALATION_TOOL" chown -R "$USER":"$USER" ./yay-bin
|
|
cd yay-bin && makepkg --noconfirm -si
|
|
|
|
if command_exists yay; then
|
|
AUR_HELPER="yay"
|
|
AUR_HELPER_CHECKED=true
|
|
else
|
|
printf "%b\n" "${RED}Failed to install AUR helper.${RC}"
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|
|
}
|
|
|
|
checkEscalationTool() {
|
|
## Check for escalation tools.
|
|
if [ -z "$ESCALATION_TOOL_CHECKED" ]; then
|
|
ESCALATION_TOOLS='sudo doas'
|
|
for tool in ${ESCALATION_TOOLS}; do
|
|
if command_exists "${tool}"; then
|
|
ESCALATION_TOOL=${tool}
|
|
printf "%b\n" "${CYAN}Using ${tool} for privilege escalation${RC}"
|
|
ESCALATION_TOOL_CHECKED=true
|
|
return 0
|
|
fi
|
|
done
|
|
|
|
printf "%b\n" "${RED}Can't find a supported escalation tool${RC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
checkCommandRequirements() {
|
|
## Check for requirements.
|
|
REQUIREMENTS=$1
|
|
for req in ${REQUIREMENTS}; do
|
|
if ! command_exists "${req}"; then
|
|
printf "%b\n" "${RED}To run me, you need: ${REQUIREMENTS}${RC}"
|
|
exit 1
|
|
fi
|
|
done
|
|
}
|
|
|
|
checkPackageManager() {
|
|
## Check Package Manager
|
|
PACKAGEMANAGER=$1
|
|
for pgm in ${PACKAGEMANAGER}; do
|
|
if command_exists "${pgm}"; then
|
|
PACKAGER=${pgm}
|
|
printf "%b\n" "${CYAN}Using ${pgm} as package manager${RC}"
|
|
|
|
if [ $PACKAGER = 'nix-env' ] && [ -z "$NIXOS_CONFIG" ]; then
|
|
NIXOS_CONFIG="/etc/nixos/configuration.nix"
|
|
while [ ! -f "$NIXOS_CONFIG" ]; do
|
|
printf "%b\n" "${RED}configuration.nix not found.${RC}"
|
|
printf "%b" "${YELLOW}Enter the path manually: ${RC}"
|
|
read -r NIXOS_CONFIG
|
|
done
|
|
fi
|
|
|
|
break
|
|
fi
|
|
done
|
|
|
|
if [ -z "$PACKAGER" ]; then
|
|
printf "%b\n" "${RED}Can't find a supported package manager${RC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
checkSuperUser() {
|
|
## Check SuperUser Group
|
|
SUPERUSERGROUP='wheel sudo root'
|
|
for sug in ${SUPERUSERGROUP}; do
|
|
if groups | grep -q "${sug}"; then
|
|
SUGROUP=${sug}
|
|
printf "%b\n" "${CYAN}Super user group ${SUGROUP}${RC}"
|
|
break
|
|
fi
|
|
done
|
|
|
|
## Check if member of the sudo group.
|
|
if ! groups | grep -q "${SUGROUP}"; then
|
|
printf "%b\n" "${RED}You need to be a member of the sudo group to run me!${RC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
checkCurrentDirectoryWritable() {
|
|
## Check if the current directory is writable.
|
|
GITPATH="$(dirname "$(realpath "$0")")"
|
|
if [ ! -w "$GITPATH" ]; then
|
|
printf "%b\n" "${RED}Can't write to $GITPATH${RC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
checkDistro() {
|
|
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
|
|
}
|
|
|
|
checkEnv() {
|
|
checkEscalationTool
|
|
checkCommandRequirements "curl groups $ESCALATION_TOOL"
|
|
checkPackageManager 'nala apt-get dnf pacman zypper nix-env'
|
|
checkCurrentDirectoryWritable
|
|
checkSuperUser
|
|
checkDistro
|
|
checkAURHelper
|
|
}
|