Use `.deb` package to install `vector`.

This commit is contained in:
Kazuhiro MUSASHI 2021-11-03 12:31:31 +09:00
parent eeca9f5d73
commit 93064a94d4
1 changed files with 18 additions and 33 deletions

View File

@ -1,37 +1,22 @@
vector_url = ''
vector_deb = ''
KEY='https://repositories.timber.io/public/vector/gpg.3543DB2D0A2BC4B8.key'
tag = ''
vtag = ''
# Calculate the Download URL:
begin
require 'net/http'
uri = URI.parse('https://github.com/vectordotdev/vector/releases/latest')
Timeout.timeout(3) do
response = Net::HTTP.get_response(uri)
vtag = $1 if response.body =~ %r{tag\/(v\d+\.\d+\.\d+)}
tag = vtag.sub(/^v/, '')
vector_deb = "#{node['vector']['debPrefix']}#{tag}#{node['vector']['debPostfix']}"
vector_url = "#{node['vector']['url']}/#{vtag}/#{vector_deb}"
end
rescue
# Abort the chef client process:
raise 'Cannot connect to http://github.com.'
execute "wget -O /tmp/vector.key #{KEY}" do
not_if 'apt-key list | grep "1E46 C153"'
end
# バージョン確認して、アップデート必要かどうか確認
result = run_command("vector --version 2>&1 | grep #{tag}", error: false)
if result.exit_status != 0
# Download:
TMP = "/tmp/#{vector_deb}"
execute "wget #{vector_url} -O #{TMP}"
execute "dpkg -i #{TMP}"
execute 'apt-key add /tmp/vector.key' do
not_if 'apt-key list | grep "1E46 C153"'
end
# Retrieve the Ubuntu code:
DIST = run_command('lsb_release -cs').stdout.chomp
# Deploy the `apt` sources:
template '/etc/apt/sources.list.d/timber-vector.list' do
action :create
variables(distribution: DIST)
end
execute 'apt update'
package 'vector'