ソースを参照

test(inspec): fix `config_spec` tests on *BSD (`wheel` not `root`)

tags/v0.42.3
Imran Iqbal 5年前
コミット
047b753a9e
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更7行の追加4行の削除
  1. +7
    -4
      test/integration/default/controls/config_spec.rb

+ 7
- 4
test/integration/default/controls/config_spec.rb ファイルの表示

@@ -1,8 +1,11 @@
# Overide by Platform
root_group = 'root'
if platform[:family] == 'freebsd'
root_group = 'wheel'
end
root_group =
case platform[:family]
when 'bsd'
'wheel'
else
'root'
end

control 'openssh configuration' do
title 'should match desired lines'

読み込み中…
キャンセル
保存