Skip to content

Commit

Permalink
el8 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jul 21, 2024
1 parent fc7c051 commit 8e34ba9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integration/test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fi

# Sleep for a random amount of time in order to work around Docker/AUFS bugs
# that may be triggered if multiple containers are shut down at the same time.
echo 'import random, time; time.sleep(random.random() * 4)' | python
echo 'import random, time; time.sleep(random.random() * 4)' | python2

run rm -rf "$WORKSPACE/output"

Expand Down
2 changes: 1 addition & 1 deletion linux/docker_image/build_stages/essentials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -e
source /pbba_build/shared/lib/library.sh

header "Installing essentials"
run_yum_install pth-devel ncurses-devel xz
run_yum_install npth ncurses-devel xz
2 changes: 1 addition & 1 deletion linux/docker_image/build_stages/install_s3cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ run mkdir -p /hbb/s3cmd
run cp -pR * /hbb/s3cmd/
run cp /pbba_build/linux/docker_image/support/s3cmd_wrapper.sh /hbb/bin/s3cmd

run pip install --cert /etc/ssl/certs/ca-bundle.crt python-dateutil
run pip2 install --cert /etc/ssl/certs/ca-bundle.crt python-dateutil
2 changes: 1 addition & 1 deletion linux/docker_image/support/s3cmd_wrapper.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -e
exec /usr/bin/env python /hbb/s3cmd/s3cmd "$@"
exec /usr/bin/env python2 /hbb/s3cmd/s3cmd "$@"

0 comments on commit 8e34ba9

Please sign in to comment.