From affd6f2e5a63bba8db326fae4502f52f04d573d8 Mon Sep 17 00:00:00 2001 From: Gerrod Ubben Date: Tue, 8 Oct 2024 13:54:07 -0400 Subject: [PATCH] Add md1 to ALLOWED_CHECKSUMS for tests [noissue] --- s6_images/assets/test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/s6_images/assets/test.sh b/s6_images/assets/test.sh index 9508123a..92950012 100755 --- a/s6_images/assets/test.sh +++ b/s6_images/assets/test.sh @@ -23,6 +23,9 @@ mkdir settings echo "CONTENT_ORIGIN='$scheme://localhost:8080'" >> settings/settings.py echo "ALLOWED_EXPORT_PATHS = ['/tmp']" >> settings/settings.py echo "ORPHAN_PROTECTION_TIME = 0" >> settings/settings.py +# pulp_rpm < 3.25 requires sha1 in allowed checksums +echo "ALLOWED_CONTENT_CHECKSUMS = ['sha1', 'sha256', 'sha512']" >> settings/settings.py + docker run --detach \ --name pulp \ --publish 8080:$port \