0
0
mirror of https://github.com/netdata/netdata.git synced 2024-11-23 08:07:44 +00:00
netdata_netdata/packaging/installer/dependencies/fedora.sh
2024-07-30 13:27:09 -04:00

109 lines
1.9 KiB
Bash
Executable File

#!/usr/bin/env bash
# Package tree used for installing netdata on distribution:
# << Fedora: [24->38] >>
set -e
NON_INTERACTIVE=0
DONT_WAIT=0
os_version() {
if [[ -f /etc/os-release ]]; then
# shellcheck disable=SC2002
cat /etc/os-release | grep VERSION_ID | cut -d'=' -f2
else
echo "Error: Cannot determine OS version!"
exit 1
fi
}
declare -a package_tree=(
cmake
curl
elfutils-libelf-devel
findutils
gcc
gcc-c++
git
gzip
json-c-devel
libatomic
libmnl-devel
libuuid-devel
libuv-devel
libyaml-devel
lz4-devel
make
openssl-devel
pkgconfig
python3
systemd-devel
tar
zlib-devel
)
usage() {
cat << EOF
OPTIONS:
[--dont-wait] [--non-interactive] [ ]
EOF
}
check_flags() {
while [ -n "${1}" ]; do
case "${1}" in
dont-wait | --dont-wait | -n)
DONT_WAIT=1
;;
non-interactive | --non-interactive | -y)
NON_INTERACTIVE=1
;;
help | -h | --help)
usage
exit 1
;;
*)
echo >&2 "ERROR: Cannot understand option '${1}'"
echo >&2
usage
exit 1
;;
esac
shift
done
if [ "${DONT_WAIT}" -eq 0 ] && [ "${NON_INTERACTIVE}" -eq 0 ]; then
read -r -p "Press ENTER to run it > " || exit 1
fi
}
# shellcheck disable=SC2068
check_flags ${@}
packages_to_install=
# shellcheck disable=SC2068
for package in ${package_tree[@]}; do
if rpm -q "$package" &> /dev/null; then
echo "Package '${package}' is installed"
else
echo "Package '$package' is NOT installed"
packages_to_install="$packages_to_install $package"
fi
done
if [[ -z $packages_to_install ]]; then
echo "All required packages are already installed. Skipping .."
else
echo "packages_to_install:" "${packages_to_install[@]}"
opts=
if [ "${NON_INTERACTIVE}" -eq 1 ]; then
echo >&2 "Running in non-interactive mode"
opts="-y"
fi
# shellcheck disable=SC2068
dnf install ${opts} ${packages_to_install[@]}
fi