prometheus-formula/test/integration/default/controls/services_spec.rb

11 lines
223 B
Ruby
Raw Normal View History

control 'Prometheus service' do
impact 0.5
title 'should be running and enabled'
describe service('prometheus') do
it { should be_enabled }
2019-06-23 18:18:40 +02:00
#it { should be_running } #some ubuntu 16.05 image issue
end
2019-04-26 13:09:43 +02:00
end