Skip to content
Snippets Groups Projects
Select Git revision
  • 221409636290444aa06ef9e59fd324b94412a635
  • master default
  • json_fix
  • puneetk-patch-1
4 results

share.rb

Blame
  • share.rb 451 B
    # frozen_string_literal: true
    
    # https://docs.chef.io/inspec/profiles/#including-all-controls-from-a-profile
    # Could use `include_controls` in this scenario
    # include_controls 'share'
    
    # https://docs.chef.io/inspec/profiles/#selectively-including-controls-from-a-profile
    # However, using `require_controls` for more clarity
    require_controls 'share' do
      control 'Postgres command'
      control 'Postgres configuration'
      # control 'Postgres service'
    end