Saltstack Official Users Formula
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- control 'users configuration' do
- title 'should match desired lines'
-
- describe file('/custom/buser') do
- its('type') { should eq :directory }
- it { should be_owned_by 'buser' }
- it { should be_grouped_into 'primarygroup' }
- its('mode') { should cmp '0750' }
- end
- end
|