mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
10 lines
256 B
Ruby
10 lines
256 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
# postgres-server is installed on these platforms
|
||
|
if ['ubuntu', 'centos'].include? os['family']
|
||
|
postgres = postgres_session('postgres', 'inspec')
|
||
|
describe postgres.query('show ssl;') do
|
||
|
its('output') { should eq 'on' }
|
||
|
end
|
||
|
end
|