-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: Update CentOS7->CentOS9 #1891
Conversation
@@ -11,7 +11,7 @@ module HostPrebuiltSteps | |||
SLEEPWAIT = 5 | |||
TRIES = 5 | |||
AMAZON2023_PACKAGES = %w[chrony] | |||
RHEL8_PACKAGES = %w[chrony] | |||
RHEL8_PACKAGES = %w[chrony iputils] # iputils provides ping. beaker assumes that's present |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TIL: there's a ping
method in beaker. I suspect we'd need to add that to Fedora and Amazon too.
This reminds me I should finish #1853 one day.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't aware of it either :D
Thinking about it, adding the missing ping package is a Bugfix. I will pull that out into it's own PR tomorrow. |
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 ~]# ```
No description provided.