32 lines
663 B
Ruby
32 lines
663 B
Ruby
|
require 'serverspec'
|
||
|
|
||
|
set :backend, :exec
|
||
|
|
||
|
puts
|
||
|
puts '================================'
|
||
|
puts %x(ansible --version)
|
||
|
puts '================================'
|
||
|
|
||
|
sleep 10
|
||
|
|
||
|
describe package('elasticsearch') do
|
||
|
it { should be_installed }
|
||
|
end
|
||
|
|
||
|
describe file('/etc/elasticsearch/elasticsearch.yml') do
|
||
|
it { should be_file }
|
||
|
it { should be_mode 640 }
|
||
|
it { should be_owned_by 'root' }
|
||
|
it { should be_grouped_into 'elasticsearch' }
|
||
|
it { should contain 'path.data: /var/lib/elasticsearch' }
|
||
|
end
|
||
|
|
||
|
describe service('elasticsearch') do
|
||
|
it { should be_enabled }
|
||
|
it { should be_running.under('systemd') }
|
||
|
end
|
||
|
|
||
|
describe port(9200) do
|
||
|
it { should be_listening }
|
||
|
end
|