Saltstack Official Users Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

11 lines
283B

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