mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-13 15:13:33 +01:00
shasum: command not found #15
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ik0 on GitHub (Dec 14, 2015).
Hello,
I use your script on old gentoo instalation and get this error:
./letsencrypt.sh: line 135: shasum: command not found
So i've just changed "shasum -a 256" to "sha256sum" and it works ! I know I use very old instalation, but that's why I don't/can't use official letsencrypt client.
@martinvolf commented on GitHub (Dec 14, 2015):
Or you can create a script called shasum in /usr/bin or /usr/local/bin with this in it:
M.
@ik0 commented on GitHub (Dec 14, 2015):
I think shasum comes from Perl and if author want this project to be perl independent this should be changed.
@martinvolf commented on GitHub (Dec 14, 2015):
You are right. And "sha256sum" is shorter ;-)
@lukas2511 commented on GitHub (Dec 14, 2015):
Just to clarify: I was using shasum because sha256sum doesn't seem to be available on bsd systems. Now i switched it to use openssl for generating the hash, which hopefully works everywhere.