From 2eda02932fa38a0395f1dcdaa1c31712a94d4a37 Mon Sep 17 00:00:00 2001 From: Nathen Harvey Date: Tue, 24 Jan 2017 23:19:30 -0500 Subject: [PATCH] 'execution' is spelled correctly Fixes a minor typo. The correct spelling is 'execution', not 'executation' Signed-off-by: Nathen Harvey --- docs/resources/sshd_config.md.erb | 2 +- lib/resources/ssh_conf.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/sshd_config.md.erb b/docs/resources/sshd_config.md.erb index e44ea31eb..908217ba0 100644 --- a/docs/resources/sshd_config.md.erb +++ b/docs/resources/sshd_config.md.erb @@ -4,7 +4,7 @@ title: About the sshd_config Resource # sshd_config -Use the `sshd_config` InSpec audit resource to test configuration data for the OpenSSH daemon located at `/etc/ssh/sshd_config` on Linux and Unix platforms. sshd---the OpenSSH daemon---listens on dedicated ports, starts a daemon for each incoming connection, and then handles encryption, authentication, key exchanges, command executation, and data exchanges. +Use the `sshd_config` InSpec audit resource to test configuration data for the OpenSSH daemon located at `/etc/ssh/sshd_config` on Linux and Unix platforms. sshd---the OpenSSH daemon---listens on dedicated ports, starts a daemon for each incoming connection, and then handles encryption, authentication, key exchanges, command execution, and data exchanges. ## Syntax diff --git a/lib/resources/ssh_conf.rb b/lib/resources/ssh_conf.rb index a14817df1..24a6dba42 100644 --- a/lib/resources/ssh_conf.rb +++ b/lib/resources/ssh_conf.rb @@ -9,7 +9,7 @@ require 'utils/simpleconfig' module Inspec::Resources class SshConf < Inspec.resource(1) name 'ssh_config' - desc 'Use the sshd_config InSpec audit resource to test configuration data for the Open SSH daemon located at /etc/ssh/sshd_config on Linux and UNIX platforms. sshd---the Open SSH daemon---listens on dedicated ports, starts a daemon for each incoming connection, and then handles encryption, authentication, key exchanges, command executation, and data exchanges.' + desc 'Use the sshd_config InSpec audit resource to test configuration data for the Open SSH daemon located at /etc/ssh/sshd_config on Linux and UNIX platforms. sshd---the Open SSH daemon---listens on dedicated ports, starts a daemon for each incoming connection, and then handles encryption, authentication, key exchanges, command execution, and data exchanges.' example " describe sshd_config do its('Protocol') { should eq '2' }