itamae/cookbooks/nomad/install.rb

23 lines
504 B
Ruby
Raw Normal View History

2024-04-06 08:24:01 +00:00
# apt source:
SRC = 'https://apt.releases.hashicorp.com/gpg'
DEST = '/usr/share/keyrings/hashicorp-archive-keyring.gpg'
2021-04-30 05:50:09 +00:00
2024-04-06 08:24:01 +00:00
execute "wget -O- #{SRC} | gpg --dearmor -o #{DEST}" do
not_if "test -e #{DEST}"
2021-04-30 05:50:09 +00:00
end
# Retrieve the Ubuntu code:
2024-04-28 03:12:18 +00:00
DIST = run_command('lsb_release -cs 2>/dev/null').stdout.chomp
2021-04-30 05:50:09 +00:00
# Deploy the `apt` sources:
template '/etc/apt/sources.list.d/hashicorp.list' do
action :create
variables(distribution: DIST)
end
execute 'apt update' do
not_if 'which nomad'
end
2021-04-30 05:50:09 +00:00
package 'nomad'