I ran into the issue while trying to write scripts to get CloudStack in docker. Here's my hack-tastic work around
HASH=$(echo $(wget -O - -q http://www.apache.org/dist/cloudstack/releases/4.2.0/apache-cloudstack-4.2.0-src.tar.bz2.sha |\ cut -f2 -d: ) | sed 's/ //g' | tr '[:upper:]' '[:lower:]') Darren On Thu, Oct 24, 2013 at 3:05 PM, David Nalley <da...@gnsa.us> wrote: > On Thu, Oct 24, 2013 at 5:43 PM, Darren Shepherd > <darren.s.sheph...@gmail.com> wrote: >> Chip, >> >> Do you care if we switch to GNU coreutils format for the hashes? The >> hash value is the same it will just be in the format like >> >> file.tbz2 *12b12341b1234b1234b1b2341b234b >> >> And then you just run "sha512sum -c <FILE>" >> >> Darren >> > > I just ran into this problem writing an ansible playbook to build RPM > packages. md5sum -c and sha256sum -c don't seem to work with the > format that we provide which seems odd. > > Incidentally the download page no longer has the documentation for > verifying hashes. > > --David