10 lines
166 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-03-17 20:24:00 -03:00
control 'Postfix packages' do
title 'should be installed'
describe package('postfix') do
it { should be_installed }
end
end