Quellcode durchsuchen

Merge pull request #171 from myii/test/fix-tests-on-BSD

test(inspec): fix `config_spec` tests on *BSD (`wheel` not `root`)
tags/v0.42.3
Niels Abspoel vor 5 Jahren
Ursprung
Commit
b6aaea6bfa
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 7 neuen und 4 gelöschten Zeilen
  1. +7
    -4
      test/integration/default/controls/config_spec.rb

+ 7
- 4
test/integration/default/controls/config_spec.rb Datei anzeigen

@@ -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'

Laden…
Abbrechen
Speichern