mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
9 lines
195 B
Ruby
9 lines
195 B
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
return unless command('sshd').exist?
|
|
|
|
describe sshd_config do
|
|
its('AcceptEnv') { should include('GORDON_SERVER') }
|
|
end
|