mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-17 10:10:31 +00:00
12 lines
313 B
Ruby
12 lines
313 B
Ruby
# frozen_string_literal: true
|
|
|
|
control 'Postgres configuration' do
|
|
title 'should include the directory'
|
|
|
|
describe file('/srv/my_tablespace') do
|
|
it { should be_directory }
|
|
it { should be_owned_by 'postgres' }
|
|
it { should be_grouped_into 'postgres' }
|
|
its('mode') { should cmp '0700' }
|
|
end
|
|
end
|