Skip to content

Commit b4e11f7

Browse files
script: ensure curl is always available in build containers
Ensure that curl is installed in all build containers regardless of ceph's dependencies or other factors. This allows us to use curl in any subsequent build steps/scripts. Fixes: https://tracker.ceph.com/issues/70451 Signed-off-by: John Mulligan <[email protected]>
1 parent 6b635d3 commit b4e11f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/script/buildcontainer-setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ fi
2828
# packages etc.
2929
case "${CEPH_BASE_BRANCH}~${DISTRO_KIND}" in
3030
*~*centos*8)
31-
dnf install -y java-1.8.0-openjdk-headless /usr/bin/rpmbuild wget
31+
dnf install -y java-1.8.0-openjdk-headless /usr/bin/rpmbuild wget curl
3232
install_container_deps
3333
dnf_clean
3434
;;
3535
*~*centos*9|*~*centos*10*|*~fedora*)
36-
dnf install -y /usr/bin/rpmbuild wget
36+
dnf install -y /usr/bin/rpmbuild wget curl
3737
install_container_deps
3838
dnf_clean
3939
;;
4040
*~*ubuntu*)
4141
apt-get update
42-
apt-get install -y wget reprepro
42+
apt-get install -y wget reprepro curl
4343
install_container_deps
4444
;;
4545
*)

0 commit comments

Comments
 (0)