Sha256: 8a0f51e8d2f073886a8190fcf7b0ec930c2374ddc405e8e4d86365115c1db468
Contents?: true
Size: 482 Bytes
Versions: 364
Compression:
Stored size: 482 Bytes
Contents
class Specinfra::Command::Windows::Base::Feature < Specinfra::Command::Windows::Base class << self def check_is_enabled(name, provider) if provider.nil? cmd = "@(ListWindowsFeatures -feature #{name}).count -gt 0" else cmd = "@(ListWindowsFeatures -feature #{name} -provider #{provider.to_s}).count -gt 0" end Backend::PowerShell::Command.new do using 'list_windows_features.ps1' exec cmd end end end end
Version data entries
364 entries across 364 versions & 3 rubygems