#80 Fedora Installation Guide gives incorrect verification instructions for Mac. Created 12 days ago by @wcattey Modified 12 days ago
The Feodora Installation Guide, for example, what is published at: https://docs.fedoraproject.org/f28/install-guide/install/Preparing_for_Installation.html and https://docs.fedoraproject.org/f27/install-guide/install/Preparing_for_Installation.html correctly shows the differing command name for SHA 256 verification, but needs to cope with how the Mac shasum uses a different syntax for the CHECKSUM file. (This is documented in, for example, Red Hat bugzilla 1297453.)
To remedy this problem change:
For OSX: $ shasum -a 256 -c *CHECKSUM
to
For OSX: $ grep '^SHA256' *-CHECKSUM | awk -F '[()=]' '{ print $4 " " $2 }' | shasum -a 256 -c
This will re-format the contents of the file to comply with what shasum needs.
Metadata Update from @pbokoc: - Issue assigned to pbokoc
Hi, thank you for the report. I don't have a way to verify this so I'll just trust you on this :). Fixed on master and f29. https://pagure.io/fedora-docs/install-guide/c/34b8a75b7d9d50052f0bd416201158aa463afe58?branch=master
master
f29
Metadata Update from @pbokoc: - Issue status updated to: Closed (was: Open)
Log in to comment on this ticket.