mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +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
|