ce5b7712c9
BREAKING CHANGE: The data dictionary is simplified and expanded. Retest your states and update pillar data accordingly. For developer convenience, clientlibs states were introduced. See pillar.example, defaults.yaml, and docs/README.
10 lines
172 B
Ruby
10 lines
172 B
Ruby
# frozen_string_literal: true
|
|
|
|
control 'prometheus package' do
|
|
title 'should be installed'
|
|
|
|
describe package('prometheus2') do
|
|
it { should be_installed }
|
|
end
|
|
end
|