prometheus-formula/test/integration/repo/controls/repositories_spec.rb
2020-08-21 10:34:29 -03:00

24 lines
622 B
Ruby

# frozen_string_literal: true
control 'repositories' do
impact 0.6
title 'Configure the repositories'
desc '
Configure the Debian/RedHat repositories for the supported platforms.
'
tag 'repositories', 'apt', 'yum'
ref 'Prometheus prerequisites - Section: Prometheus package repositories', url: 'https://prometheus.io/download'
case os[:family]
when 'debian'
describe file('/etc/apt/sources.list.d/prometheus.list') do
it { should_not exist }
end
when 'redhat', 'centos'
describe yum.repo('prometheus') do
it { should exist }
it { should be_enabled }
end
end
end