Skip to content
Snippets Groups Projects
Select Git revision
  • adacdb49e4e605ee4c5976efdd86c8d384942ded
  • master default
  • v0.52.5
  • v0.52.4
  • v0.52.3
  • v0.52.2
  • v0.52.1
  • v0.52.0
  • v0.51.0
  • v0.50.0
  • v0.49.0
11 results

user.sls

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