Saltstack Official Users Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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