X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/524d90d022751710980613df6b943291fc1498d6..0071c3a6bd357405bc790c468dc2683312fdfe75:/test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb diff --git a/test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb b/test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb index c37883d15..7a035e8f6 100644 --- a/test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb +++ b/test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb @@ -3,15 +3,11 @@ require "serverspec" # Required by serverspec set :backend, :exec -describe package("prometheus-node-exporter") do - it { should be_installed } -end - describe service("prometheus-node-exporter") do it { should be_enabled } it { should be_running } end describe port(9100) do - it { should be_listening.with("tcp6") } + it { should be_listening.with("tcp") } end