itamae/cookbooks/grafana/install.rb

19 lines
325 B
Ruby
Raw Normal View History

2019-03-03 08:50:49 +00:00
# Deploy APT source file:
remote_file '/etc/apt/sources.list.d/grafana.list' do
owner 'root'
group 'root'
mode '644'
end
# Load APT key:
2019-09-15 14:13:15 +00:00
execute 'curl https://packages.grafana.com/gpg.key | apt-key add -' do
not_if 'apt-key list | grep grafana'
2019-03-03 08:50:49 +00:00
end
execute 'apt update'
package 'grafana' do
action :install
end