Module: Chef::DSL::RegistryHelper

Included in:
Recipe, Resource
Defined in:
lib/chef/dsl/registry_helper.rb

Instance Method Summary collapse

Instance Method Details

#registry_data_exists?(key_path, value, architecture = :machine) ⇒ Boolean

Returns:

  • (Boolean)


52
53
54
55
# File 'lib/chef/dsl/registry_helper.rb', line 52

def registry_data_exists?(key_path, value, architecture = :machine)
  registry = Chef::Win32::Registry.new(run_context, architecture)
  registry.data_exists?(key_path, value)
end

#registry_get_subkeys(key_path, architecture = :machine) ⇒ Object



44
45
46
47
# File 'lib/chef/dsl/registry_helper.rb', line 44

def registry_get_subkeys(key_path, architecture = :machine)
  registry = Chef::Win32::Registry.new(run_context, architecture)
  registry.get_subkeys(key_path)
end

#registry_get_values(key_path, architecture = :machine) ⇒ Object



36
37
38
39
# File 'lib/chef/dsl/registry_helper.rb', line 36

def registry_get_values(key_path, architecture = :machine)
  registry = Chef::Win32::Registry.new(run_context, architecture)
  registry.get_values(key_path)
end

#registry_has_subkeys?(key_path, architecture = :machine) ⇒ Boolean

Returns:

  • (Boolean)


40
41
42
43
# File 'lib/chef/dsl/registry_helper.rb', line 40

def registry_has_subkeys?(key_path, architecture = :machine)
  registry = Chef::Win32::Registry.new(run_context, architecture)
  registry.has_subkeys?(key_path)
end

#registry_key_exists?(key_path, architecture = :machine) ⇒ Boolean

the registry instance is cheap to build and throwing it away ensures we don’t carry any state (e.g. magic 32-bit/64-bit settings) between calls

Returns:

  • (Boolean)


32
33
34
35
# File 'lib/chef/dsl/registry_helper.rb', line 32

def registry_key_exists?(key_path, architecture = :machine)
  registry = Chef::Win32::Registry.new(run_context, architecture)
  registry.key_exists?(key_path)
end

#registry_value_exists?(key_path, value, architecture = :machine) ⇒ Boolean

Returns:

  • (Boolean)


48
49
50
51
# File 'lib/chef/dsl/registry_helper.rb', line 48

def registry_value_exists?(key_path, value, architecture = :machine)
  registry = Chef::Win32::Registry.new(run_context, architecture)
  registry.value_exists?(key_path, value)
end