Sha256: 4ae572b1047cc698d6d751913c3a2faedaaaef786b321dda7ab96b1fcc32e459
Contents?: true
Size: 613 Bytes
Versions: 8
Compression:
Stored size: 613 Bytes
Contents
module Serverspec module Type class IisWebsite < Base def exists?() @runner.check_iis_website_is_installed(@name) end def enabled?() @runner.check_iis_website_is_enabled(@name) end def running?() @runner.check_iis_website_is_running(@name) end def in_app_pool?(app_pool) @runner.check_iis_website_is_in_app_pool(@name, app_pool) end def has_physical_path?(path) @runner.check_iis_website_has_physical_path(@name, path) end def to_s %Q[IIS Website "#{@name}"] end end end end
Version data entries
8 entries across 8 versions & 1 rubygems