1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_ntp.git synced 2024-08-16 12:59:49 +02:00

add inspec tests

This commit is contained in:
diodonfrost 2018-12-28 11:08:33 +01:00
parent bfa085c650
commit cb9b855b4c

View file

@ -0,0 +1,23 @@
# Test ntp daemon install
ntp_package = "ntp"
ntp_service = "ntp"
control 'install-01' do
impact 1.0
title 'Ntp package'
desc 'Ntp daemon package should be install'
describe package(ntp_package) do
it { should be_installed }
end
end
control 'install-02' do
impact 1.0
title 'Ntp service'
desc 'Ntp service should be enabled and started'
describe service(ntp_service) do
it { should be_enabled }
it { should be_running }
end
end