diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-02-18 05:41:45 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-02-18 05:41:45 +0000 |
commit | fa510022166d9e8a04325858c256f56c0ac91c52 (patch) | |
tree | 9ff283a9de9c72a51ca9b79980dc005f07f7ce2a /lib | |
parent | 382132a84fa3aaf752150a4d6a881dbb8b71fa66 (diff) |
Show NOP messages.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/protocoltest/ssl.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/custodian/protocoltest/ssl.rb b/lib/custodian/protocoltest/ssl.rb index 704edac..56e9c3f 100644 --- a/lib/custodian/protocoltest/ssl.rb +++ b/lib/custodian/protocoltest/ssl.rb @@ -64,12 +64,15 @@ module Custodian # If outside 10AM-5PM we don't alert. # if ( hour < 10 || hour > 17 ) + puts( "Outside office hours - Not running SSL-Verification of #{@host}" ) return true end + # # NOP - validate here. # + puts( "NOP - Not running SSL-Verification of #{@host}" ) return true end |