diff options
Diffstat (limited to 'lib/custodian')
-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 |