mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 17:50:27 +00:00
13 lines
251 B
Ruby
13 lines
251 B
Ruby
control 'Postgres service' do
|
|
impact 0.5
|
|
title 'should be running and enabled'
|
|
|
|
describe service('postgresql') do
|
|
it { should be_enabled }
|
|
it { should be_running }
|
|
end
|
|
|
|
describe port(5432) do
|
|
it { should be_listening }
|
|
end
|
|
end
|