Skip to content

Commit 9286742

Browse files
committed
Remove unused jq package in rhel8 and rhel9 images
The jq package was added in 926a283. The code that invoked jq was subsequently removed in c9a6afc. Signed-off-by: Christopher Desiniotis <[email protected]>
1 parent 19173c9 commit 9286742

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

rhel8/install.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ dep_installer () {
1414
glibc.i686 \
1515
make \
1616
cpio \
17-
kmod \
18-
jq
17+
kmod
1918
elif [ "$DRIVER_ARCH" = "ppc64le" ]; then
2019
dnf install -y \
2120
libglvnd-glx \
@@ -25,8 +24,7 @@ dep_installer () {
2524
glibc \
2625
make \
2726
cpio \
28-
kmod \
29-
jq
27+
kmod
3028
elif [ "$DRIVER_ARCH" = "aarch64" ]; then
3129
dnf install -y \
3230
libglvnd-glx \
@@ -36,8 +34,7 @@ dep_installer () {
3634
glibc \
3735
make \
3836
cpio \
39-
kmod \
40-
jq
37+
kmod
4138
fi
4239
rm -rf /var/cache/yum/*
4340
}

rhel9/install.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ dep_installer () {
1616
glibc.i686 \
1717
make \
1818
cpio \
19-
kmod \
20-
jq
19+
kmod
2120
elif [ "$DRIVER_ARCH" = "ppc64le" ]; then
2221
dnf install -y \
2322
libglvnd-glx \
@@ -27,8 +26,7 @@ dep_installer () {
2726
glibc \
2827
make \
2928
cpio \
30-
kmod \
31-
jq
29+
kmod
3230
elif [ "$DRIVER_ARCH" = "aarch64" ]; then
3331
dnf install -y \
3432
libglvnd-glx \
@@ -38,8 +36,7 @@ dep_installer () {
3836
glibc \
3937
make \
4038
cpio \
41-
kmod \
42-
jq
39+
kmod
4340
fi
4441
rm -rf /var/cache/yum/*
4542
}

0 commit comments

Comments
 (0)