hashipi

Raspberry Pi Test Cluster for HashiCorp Vault, Nomad and Consul
git clone https://git.in0rdr.ch/hashipi.git
Log | Files | Refs | README

commit 1db1f45512cf00b728629faa832233343478104b
parent 33f488ab4b8cfa8552ec78c6f9eec14a55cb8395
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Wed, 19 Jan 2022 21:28:58 +0100

fix names

Diffstat:
Mconsul.sh | 2+-
Mhashi-pi.json | 4++--
Mnomad.sh | 2+-
Mvault.sh | 2+-
4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/consul.sh b/consul.sh @@ -19,7 +19,7 @@ curl -sS -O "${CONSUL_URL}/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_SHA256SUMS # Verify signature and zip archive gpg --import "hashicorp.asc" gpg --verify "consul_${CONSUL_VERSION}_SHA256SUMS.sig" "consul_${CONSUL_VERSION}_SHA256SUMS" -shasum -a 256 -c "consul_${CONSUL_VERSION}_SHA256SUMS" --ignore-missing +sha256sum -c "consul_${CONSUL_VERSION}_SHA256SUMS" --ignore-missing # Install binary unzip "consul_${CONSUL_VERSION}_linux_${CONSUL_ARCH}.zip" diff --git a/hashi-pi.json b/hashi-pi.json @@ -63,12 +63,12 @@ "provisioners": [ { "type": "file", - "source": "packer-builder-arm-src/scripts/resizerootfs/resizerootfs", + "source": "arm-builder/scripts/resizerootfs/resizerootfs", "destination": "/tmp/resizerootfs" }, { "type": "file", - "source": "packer-builder-arm-src/scripts/resizerootfs/resizerootfs.service", + "source": "arm-builder/scripts/resizerootfs/resizerootfs.service", "destination": "/tmp/resizerootfs.service" }, { diff --git a/nomad.sh b/nomad.sh @@ -23,7 +23,7 @@ else # Verify signature and zip archive gpg --import "hashicorp.asc" gpg --verify "nomad_${NOMAD_VERSION}_SHA256SUMS.sig" "nomad_${NOMAD_VERSION}_SHA256SUMS" - shasum -a 256 -c "nomad_${NOMAD_VERSION}_SHA256SUMS" --ignore-missing + sha256sum -c "nomad_${NOMAD_VERSION}_SHA256SUMS" --ignore-missing # Extract binary unzip "nomad_${NOMAD_VERSION}_linux_${NOMAD_ARCH}.zip" diff --git a/vault.sh b/vault.sh @@ -19,7 +19,7 @@ curl -sS -O "${VAULT_URL}/${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS.sig # Verify signature and zip archive gpg --import "hashicorp.asc" gpg --verify "vault_${VAULT_VERSION}_SHA256SUMS.sig" "vault_${VAULT_VERSION}_SHA256SUMS" -shasum -a 256 -c "vault_${VAULT_VERSION}_SHA256SUMS" --ignore-missing +sha256sum -c "vault_${VAULT_VERSION}_SHA256SUMS" --ignore-missing # Install binary unzip "vault_${VAULT_VERSION}_linux_${VAULT_ARCH}.zip"