Sha256: 22c41177654e653c6a18c0e458be688aa8e778240eb28a53840c7f554f927965
Contents?: true
Size: 1 KB
Versions: 3
Compression:
Stored size: 1 KB
Contents
module Serverspec module Type class IisWebsite < Base def exists?() backend.check_iis_website_installed(@name) end def enabled?() backend.check_iis_website_enabled(@name) end def running?() backend.check_iis_website_running(@name) end def in_app_pool?(app_pool) backend.check_iis_website_app_pool(@name, app_pool) end def has_physical_path?(path) backend.check_iis_website_path(@name, path) end def has_site_bindings?(port, protocol, ipaddress, host_header) backend.check_iis_website_binding(@name, port, protocol, ipaddress, host_header) end def has_virtual_dir?(vdir, path) backend.check_iis_website_virtual_dir(@name, vdir, path) end def has_site_application?(app, pool, physical_path) backend.check_iis_website_application(@name, app, pool, physical_path) end def to_s %Q[IIS Website "#{@name}"] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
serverspec-1.16.0 | lib/serverspec/type/iis_website.rb |
serverspec-1.15.0 | lib/serverspec/type/iis_website.rb |
serverspec-1.14.0 | lib/serverspec/type/iis_website.rb |