FYI
If you try to install the splunkforwarder repo rpm via dnf in Fedora 30, the installation will fail since the splunkforwarder package is not specifically looking for coreutils (i.e., bin, uname).
$ dnf install splunkforwarder-7.2.1
Last metadata expiration check: 0:20:59 ago on Mon 13 May 2019 03:23:11 PM CDT.
Error: Problem: conflicting requests
- nothing provides /bin/mv needed by splunkforwarder-7.2.1-be11b2c46e23.x86_64
- nothing provides /bin/uname needed by splunkforwarder-7.2.1-be11b2c46e23.x86_64
(try to add '--skip-broken' to skip uninstallable packages)
...
$ dnf provides '*/uname'
Last metadata expiration check: 0:32:15 ago on Mon 13 May 2019 03:23:11 PM CDT.
coreutils-8.31-2.fc30.x86_64 : A set of basic GNU tools commonly used in shell scripts
Repo : @System
Matched from:
Filename : /usr/bin/uname
...
$ uname -a
Linux splunkhost 5.0.13-300.fc30.x86_64 #1 SMP Mon May 6 00:39:45 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
... View more