Install `consul-template` when finding a newer version.

This commit is contained in:
Kazuhiro MUSASHI 2019-11-05 23:39:25 +08:00
parent e0820892d4
commit 45fe078188
1 changed files with 20 additions and 15 deletions

View File

@ -2,6 +2,7 @@
# Calculating the latest `consul-template` version:
# -------------------------------------------
download_url = ''
tag_version = ''
begin
require 'net/http'
@ -26,6 +27,9 @@ end
# Main Part
# -------------------------------------------
# バージョン確認して、アップデート必要かどうか確認
result = run_command("consul-template --version 2>&1 | grep #{tag_version}", error: false)
if result.exit_status != 0
# Download:
execute "wget #{download_url} -O #{node['consul-template']['tmp_path']}"
@ -45,3 +49,4 @@ link '/usr/local/bin/consul-template' do
user 'root'
to '/opt/consul/bin/consul-template'
end
end