Saltstack Official Users Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
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