10 lines
171 B
Ruby

# frozen_string_literal: true
control 'Keepalived package' do
title 'should be installed'
describe package('keepalived') do
it { should be_installed }
end
end