Class: Intrigue::Ident::Check::WpEngine

Inherits:
Base
  • Object
show all
Defined in:
lib/checks/wp_engine.rb

Instance Method Summary collapse

Methods inherited from Base

inherited

Instance Method Details

#generate_checks(url) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/checks/wp_engine.rb', line 6

def generate_checks(url)
  [
    {
      :type => "service",
      :vendor =>"WPEngine",
      :tags => ["hosting_provider"],
      :product =>"WPEngine",
      :match_details =>"WPEngine - Access site by IP",
      :version => nil,
      :match_type => :content_body,
      :match_content =>  /This domain is successfully pointed at WP Engine, but is not configured for an account on our platform./,
      :hide => true,
      :paths => ["#{url}"]
    }
  ]
end