Compare commits

...

2 Commits

Author SHA1 Message Date
Kazuhiro MUSASHI cca3bc93d3 Update Hashicorp apt sources. 2024-04-06 17:31:12 +09:00
Kazuhiro MUSASHI 3834d4b7c6 Install necessary packages. 2024-04-06 17:30:36 +09:00
7 changed files with 19 additions and 19 deletions

View File

@ -2,7 +2,7 @@
execute 'apt update'
# Install the necessary packages:
%w[build-essential zsh vim-nox debian-keyring curl direnv jq avahi-daemon].each do |pkg|
%w[build-essential zsh vim-nox debian-keyring curl direnv jq avahi-daemon wget gpg coreutils].each do |pkg|
package pkg
end

View File

@ -1,9 +1,9 @@
# Install `Consul`:
KEYSRV = "https://apt.releases.hashicorp.com/gpg"
ID = "AA16FCBCA621E701"
# apt source:
SRC = 'https://apt.releases.hashicorp.com/gpg'
DEST = '/usr/share/keyrings/hashicorp-archive-keyring.gpg'
execute "apt-key adv --keyserver #{KEYSRV} --recv-keys #{ID}" do
not_if 'apt-key list | grep HashiCorp'
execute "wget -O- #{SRC} | gpg --dearmor -o #{DEST}" do
not_if "test -e #{DEST}"
end
# Retrieve the Ubuntu code:

View File

@ -1 +1 @@
deb [arch=amd64] https://apt.releases.hashicorp.com <%= @distribution %> main
deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com <%= @distribution %> main

View File

@ -1,9 +1,9 @@
# Install `Consul`:
KEYSRV = "https://apt.releases.hashicorp.com/gpg"
ID = "AA16FCBCA621E701"
# apt source:
SRC = 'https://apt.releases.hashicorp.com/gpg'
DEST = '/usr/share/keyrings/hashicorp-archive-keyring.gpg'
execute "apt-key adv --keyserver #{KEYSRV} --recv-keys #{ID}" do
not_if 'apt-key list | grep HashiCorp'
execute "wget -O- #{SRC} | gpg --dearmor -o #{DEST}" do
not_if "test -e #{DEST}"
end
# Retrieve the Ubuntu code:

View File

@ -1 +1 @@
deb [arch=amd64] https://apt.releases.hashicorp.com <%= @distribution %> main
deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com <%= @distribution %> main

View File

@ -1,9 +1,9 @@
# Install `Consul`:
KEYSRV = "https://apt.releases.hashicorp.com/gpg"
ID = "AA16FCBCA621E701"
# apt source:
SRC = 'https://apt.releases.hashicorp.com/gpg'
DEST = '/usr/share/keyrings/hashicorp-archive-keyring.gpg'
execute "apt-key adv --keyserver #{KEYSRV} --recv-keys #{ID}" do
not_if 'apt-key list | grep HashiCorp'
execute "wget -O- #{SRC} | gpg --dearmor -o #{DEST}" do
not_if "test -e #{DEST}"
end
# Retrieve the Ubuntu code:

View File

@ -1 +1 @@
deb [arch=amd64] https://apt.releases.hashicorp.com <%= @distribution %> main
deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com <%= @distribution %> main