mirror of
https://github.com/inspec/inspec
synced 2025-02-16 05:58:39 +00:00
11 lines
241 B
Ruby
11 lines
241 B
Ruby
# encoding: utf-8
|
|
|
|
if ['centos', 'fedora', 'opensuse', 'debian', 'ubuntu'].include?(os[:family])
|
|
describe package('curl') do
|
|
it { should be_installed }
|
|
end
|
|
|
|
describe package('nginx') do
|
|
it { should_not be_installed }
|
|
end
|
|
end
|