Closed unreturned closed 1 week ago
Maybe will be useful to notice, that we need to run installer by root-user to place binary in /usr/local/bin/
root
/usr/local/bin/
Also, installer check shasum, but by default this script is not installed
bash d8-install.sh Downloading https://github.com/deckhouse/deckhouse-cli/releases/download/v0.2.1/d8-v0.2.1-linux-amd64.tar.gz Verifying checksum... d8-install.sh: строка 89: shasum: команда не найдена
We need package libdigest-sha-perl for Debian-like and something like perl-Digest-SHA on CentOS-like
libdigest-sha-perl
perl-Digest-SHA
Also, maybe better to switch to /usr/bin/sha256sum looks like it exists by default (coreutils package)
/usr/bin/sha256sum
coreutils
This has been addressed in https://github.com/deckhouse/deckhouse-cli/pull/41
Maybe will be useful to notice, that we need to run installer by
root
-user to place binary in/usr/local/bin/
Also, installer check shasum, but by default this script is not installed
We need package
libdigest-sha-perl
for Debian-like and something likeperl-Digest-SHA
on CentOS-likeAlso, maybe better to switch to
/usr/bin/sha256sum
looks like it exists by default (coreutils
package)