@cryptotaxi247 / netdata-1 / commits / b19635249

Fix missing find command when installing/updating on Rocky Linux systems. (#16052)

Austin S. Hemmelgarn committed Sep 26, 2023 at 12:33 UTC b19635249a46d5e7282658cbc8cdb590ece3e9d6
3 files changed +4
packaging/installer/dependencies/centos.sh
+1
@@ -11,6 +11,7 @@ declare -a package_tree=(
11 cmake
12 curl
13 elfutils-libelf-devel
14 + findutils
15 gcc
16 gcc-c++
17 git
packaging/installer/dependencies/rockylinux.sh
+1
@@ -15,6 +15,7 @@ declare -a package_tree=(
15 cmake
16 curl
17 elfutils-libelf-devel
18 + findutils
19 gcc
20 gcc-c++
21 git
packaging/installer/install-required-packages.sh
+2
@@ -613,6 +613,8 @@ declare -A pkg_find=(
613 ['gentoo']="sys-apps/findutils"
614 ['fedora']="findutils"
615 ['clearlinux']="findutils"
616 + ['rhel']="findutils"
617 + ['centos']="findutils"
618 ['macos']="NOTREQUIRED"
619 ['freebsd']="NOTREQUIRED"
620 ['default']="WARNING|"