mirror of
https://github.com/inspec/inspec
synced 2024-11-30 16:39:20 +00:00
6 lines
139 B
Ruby
6 lines
139 B
Ruby
# encoding: utf-8
|
|
return unless command('sshd').exist?
|
|
|
|
describe sshd_config do
|
|
its('AcceptEnv') { should include('GORDON_SERVER') }
|
|
end
|