Saltstack Official Users Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
314B

  1. # frozen_string_literal: true
  2. control 'users configuration' do
  3. title 'should match desired lines'
  4. describe file('/custom/buser') do
  5. its('type') { should eq :directory }
  6. it { should be_owned_by 'buser' }
  7. it { should be_grouped_into 'primarygroup' }
  8. its('mode') { should cmp '0750' }
  9. end
  10. end