We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d27b803 commit 2267e20Copy full SHA for 2267e20
1 file changed
addons/redhat/Dockerfile.ocp
@@ -16,8 +16,9 @@ RUN yum -y update && yum -y update glibc && yum --setopt=skip_missing_names_on_i
16
iproute \
17
procps-ng \
18
chrony \
19
- gpsd-minimal \
20
- gpsd-minimal-clients \
+ # gpsd-minimal and gpsd-minimal-clients were renamed to gpsd and gpsd-clients in RHEL 10
+ # try the old names first, fall back to new names
21
+ && (yum -y install gpsd-minimal gpsd-minimal-clients || yum -y install gpsd gpsd-clients) \
22
&& yum clean all
23
24
# Create symlinks for executables to match references
0 commit comments