Saltstack Official Users Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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