Skip to content

Commit 91585df

Browse files
authored
Fix APT repository instructions to work (#26)
The instructions on https://www.envoyproxy.io/docs/envoy/v1.32.1/start/install#install-envoy-on-debian-based-linux are correct, but the instructions here did not work out of the box. Signed-off-by: Sebastian Lövdahl <slovdahl@hibox.fi>
1 parent 83d4bfa commit 91585df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

site/theme/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ <h1>Install Envoy with apt</h1>
2929
role="tabpanel"
3030
aria-labelledby="{{ version }}-tab">
3131
<pre><code class="language-bash">
32-
$ wget {{ SITEURL }}/signing.key | sudo gpg --dearmor -o /etc/apt/keyrings/envoy-keyring.gpg
33-
$ echo "deb[signed-by=/etc/apt/keyrings/envoy-keyring.gpg] {{ SITEURL }} {{ version }} main" | sudo tee /etc/apt/sources.list.d/envoy.list
32+
$ wget -O- {{ SITEURL }}/signing.key | sudo gpg --dearmor -o /etc/apt/keyrings/envoy-keyring.gpg
33+
$ echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/envoy-keyring.gpg] {{ SITEURL }} {{ version }} main" | sudo tee /etc/apt/sources.list.d/envoy.list
3434
$ sudo apt-get update
3535
$ sudo apt-get install envoy
3636
$ envoy --version

0 commit comments

Comments
 (0)