equal
deleted
inserted
replaced
|
1 #!/bin/bash |
|
2 |
|
3 set -e |
|
4 |
|
5 curl -o /usr/share/keyrings/hashicorp.asc https://apt.releases.hashicorp.com/gpg |
|
6 |
|
7 cat <<EOF >/etc/apt/sources.list.d/hashicorp.list |
|
8 # https://www.hashicorp.com/blog/announcing-the-hashicorp-linux-repository |
|
9 # https://www.hashicorp.com/official-packaging-guide |
|
10 # List of distro releases. |
|
11 # For new GPG key use: |
|
12 # curl -o /usr/share/keyrings/hashicorp.asc https://apt.releases.hashicorp.com/gpg |
|
13 |
|
14 deb [signed-by=/usr/share/keyrings/hashicorp.asc] https://apt.releases.hashicorp.com bookworm main |
|
15 EOF |