diff options
Diffstat (limited to 'lib/custodian/alerts/mauve.rb')
-rw-r--r-- | lib/custodian/alerts/mauve.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/custodian/alerts/mauve.rb b/lib/custodian/alerts/mauve.rb index 2b48fbc..d2b3a12 100644 --- a/lib/custodian/alerts/mauve.rb +++ b/lib/custodian/alerts/mauve.rb @@ -338,12 +338,11 @@ module Custodian # # Return the formatted message # - ips.each do |result| - - if Custodian::Util::Bytemark.inside?(result.to_s) - result += "<p>#{host} resolves to #{result} which is inside the Bytemark network.</p>" + ips.each do |ipaddr| + if Custodian::Util::Bytemark.inside?(ipaddr.to_s) + result += "<p>#{host} resolves to #{ipaddr} which is inside the Bytemark network.</p>" else - result += "<p>#{host} resolves to #{result} which is OUTSIDE the Bytemark network.</p>" + result += "<p>#{host} resolves to #{ipaddr} which is OUTSIDE the Bytemark network.</p>" end end |