itamae/cookbooks/grafana/install.rb

21 lines
364 B
Ruby

# Deploy APT source file:
remote_file '/etc/apt/sources.list.d/grafana.list' do
owner 'root'
group 'root'
mode '644'
end
# Load APT key:
execute 'curl https://packages.grafana.com/gpg.key | apt-key add -' do
not_if 'apt-key list | grep grafana'
end
execute 'apt update' do
not_if 'which grafana-server'
end
package 'grafana' do
action :install
end