Skip to content

Commit

Permalink
EL8/9: Install iputils
Browse files Browse the repository at this point in the history
Beaker assumes that the ping binary exists. in EL8 and EL9 that's
provided by iputils.

```
[root@pe ~]# dnf whatprovides /usr/sbin/ping
Fedora 40 - x86_64                                                                                                                                                                    23 MB/s |  56 MB     00:02
Fedora 40 openh264 (From Cisco) - x86_64                                                                                                                                             6.2 kB/s | 2.1 kB     00:00
Fedora 40 - x86_64 - Updates                                                                                                                                                          19 MB/s |  32 MB     00:01
iputils-20240117-4.fc40.x86_64 : Network monitoring tools including ping
Repo        : @System
Matched from:
Filename    : /usr/sbin/ping

iputils-20240117-4.fc40.x86_64 : Network monitoring tools including ping
Repo        : fedora
Matched from:
Filename    : /usr/sbin/ping

[root@pe ~]#
```
  • Loading branch information
bastelfreak committed Jul 24, 2024
1 parent dbd0f43 commit 15b7388
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/beaker/host_prebuilt_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ module HostPrebuiltSteps
SLEEPWAIT = 5
TRIES = 5
AMAZON2023_PACKAGES = %w[chrony]
RHEL8_PACKAGES = %w[chrony]
FEDORA_PACKAGES = %w[chrony]
RHEL8_PACKAGES = %w[chrony iputils] # iputils provides ping. beaker assumes that's present
FEDORA_PACKAGES = %w[chrony iputils]
UNIX_PACKAGES = %w[curl ntpdate]
FREEBSD_PACKAGES = ['curl', 'perl5|perl']
OPENBSD_PACKAGES = ['curl']
Expand Down

0 comments on commit 15b7388

Please sign in to comment.