1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_ntp.git synced 2024-08-16 12:59:49 +02:00
ansible_role_ntp/tests/inspec/config_spec.rb
2018-12-28 15:10:34 +01:00

17 lines
554 B
Ruby

# Test ntp config
ntp_configfile = '/etc/ntp.conf'
control 'config-01' do
impact 1.0
title 'Ntp server'
desc 'Ntp worldwide servers should be present'
describe file(ntp_configfile) do
its('owner') { should eq 'root' }
its('mode') { should cmp '0644' }
its('content') { should match /server 0.pool.ntp.org iburst/ }
its('content') { should match /server 1.pool.ntp.org iburst/ }
its('content') { should match /server 2.pool.ntp.org iburst/ }
its('content') { should match /server 3.pool.ntp.org iburst/ }
end
end