2024-07-15 20:00:04 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2024-07-21 21:19:03 +01:00
|
|
|
# shellcheck disable=SC2034
|
|
|
|
|
2024-07-14 03:16:02 +01:00
|
|
|
RC='\033[0m'
|
|
|
|
RED='\033[31m'
|
|
|
|
YELLOW='\033[33m'
|
|
|
|
GREEN='\033[32m'
|
2024-07-13 22:44:09 +01:00
|
|
|
|
|
|
|
command_exists() {
|
2024-07-14 03:16:02 +01:00
|
|
|
which $1 >/dev/null 2>&1
|
2024-07-13 22:44:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
checkEnv() {
|
|
|
|
## Check for requirements.
|
|
|
|
REQUIREMENTS='curl groups sudo'
|
2024-07-14 03:16:02 +01:00
|
|
|
for req in ${REQUIREMENTS}; do
|
|
|
|
if ! command_exists ${req}; then
|
2024-07-15 22:00:28 +01:00
|
|
|
echo -e "${RED}To run me, you need: ${REQUIREMENTS}${RC}"
|
2024-07-14 03:16:02 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
2024-07-13 22:44:09 +01:00
|
|
|
|
2024-07-14 03:16:02 +01:00
|
|
|
## Check Package Handler
|
2024-07-13 22:44:09 +01:00
|
|
|
PACKAGEMANAGER='apt-get dnf pacman zypper'
|
|
|
|
for pgm in ${PACKAGEMANAGER}; do
|
|
|
|
if command_exists ${pgm}; then
|
|
|
|
PACKAGER=${pgm}
|
2024-07-14 03:16:02 +01:00
|
|
|
echo "Using ${pgm}"
|
|
|
|
break
|
2024-07-13 22:44:09 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -z "${PACKAGER}" ]; then
|
2024-07-15 22:00:28 +01:00
|
|
|
echo -e "${RED}Can't find a supported package manager${RC}"
|
2024-07-13 22:44:09 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
## Check SuperUser Group
|
|
|
|
SUPERUSERGROUP='wheel sudo root'
|
|
|
|
for sug in ${SUPERUSERGROUP}; do
|
2024-07-14 03:16:02 +01:00
|
|
|
if groups | grep -q ${sug}; then
|
2024-07-13 22:44:09 +01:00
|
|
|
SUGROUP=${sug}
|
2024-07-14 03:16:02 +01:00
|
|
|
echo "Super user group ${SUGROUP}"
|
|
|
|
break
|
2024-07-13 22:44:09 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
## Check if member of the sudo group.
|
2024-07-14 03:16:02 +01:00
|
|
|
if ! groups | grep -q ${SUGROUP}; then
|
2024-07-15 22:00:28 +01:00
|
|
|
echo -e "${RED}You need to be a member of the sudo group to run me!${RC}"
|
2024-07-13 22:44:09 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
DTYPE="unknown" # Default to unknown
|
2024-07-14 03:16:02 +01:00
|
|
|
# Use /etc/os-release for modern distro identification
|
|
|
|
if [ -f /etc/os-release ]; then
|
|
|
|
. /etc/os-release
|
|
|
|
DTYPE=$ID
|
|
|
|
fi
|
2024-07-15 20:00:04 +01:00
|
|
|
}
|