From 58f92aa669c6b852ce1f6a1aabfffd955f05fa3f Mon Sep 17 00:00:00 2001 From: Adedolapo Olutuyo <85107972+tuyojr@users.noreply.github.com> Date: Wed, 10 Apr 2024 11:53:34 +0100 Subject: [PATCH] changed arm64 to amd64, following Debian 12 x86-64 architecture. --- docs/07-bootstrapping-etcd.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/07-bootstrapping-etcd.md b/docs/07-bootstrapping-etcd.md index 574d901..650b186 100644 --- a/docs/07-bootstrapping-etcd.md +++ b/docs/07-bootstrapping-etcd.md @@ -8,7 +8,7 @@ Copy `etcd` binaries and systemd unit files to the `server` instance: ```bash scp \ - downloads/etcd-v3.4.27-linux-arm64.tar.gz \ + downloads/etcd-v3.4.27-linux-amd64.tar.gz \ units/etcd.service \ root@server:~/ ``` @@ -27,8 +27,8 @@ Extract and install the `etcd` server and the `etcdctl` command line utility: ```bash { - tar -xvf etcd-v3.4.27-linux-arm64.tar.gz - mv etcd-v3.4.27-linux-arm64/etcd* /usr/local/bin/ + tar -xvf etcd-v3.4.27-linux-amd64.tar.gz + mv etcd-v3.4.27-linux-amd64/etcd* /usr/local/bin/ } ```