Skip to content
Snippets Groups Projects
Select Git revision
  • 160bc6864c9345ebde19bcd86e7fb30cab84915d
  • master default protected
  • hsh_v4.5
  • hsh_v4-4
  • hsh_v4.4
  • hsh_v4.3
  • hsh_v4.1.x
  • hsh_v4.2
  • hsh_v4.1
  • hsh_v3.11
  • hsh_3.10
  • v3.11-r2-hsh
  • v3.11-r2
  • v3.11-r1
  • v3.10-r1
  • v3.9-r1
  • v3.8-r2
  • v3.8-r1
  • v3.7-r1
19 results

backup_lifecycle_workflow.php

Blame
  • config_spec.rb 313 B
    # 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