Class: Chef::Provider::Package::Freebsd::Base

Inherits:
Chef::Provider::Package show all
Includes:
Mixin::GetSourceFromPackage
Defined in:
lib/chef/provider/package/freebsd/base.rb

Direct Known Subclasses

Pkg, Pkgng, Port

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary

Attributes inherited from Chef::Provider::Package

#candidate_version

Attributes inherited from Chef::Provider

#action, #cookbook_name, #current_resource, #new_resource, #recipe_name, #run_context

Instance Method Summary collapse

Methods inherited from Chef::Provider::Package

#action_install, #action_purge, #action_reconfig, #action_remove, #action_upgrade, #as_array, #check_resource_semantics!, #define_resource_requirements, #expand_options, #get_preseed_file, #have_any_matching_version?, #install_package, #multipackage_api_adapter, #preseed_package, #preseed_resource, #purge_package, #reconfig_package, #remove_package, #removing_package?, #target_version_already_installed?, #upgrade_package, #whyrun_supported?

Methods included from Mixin::SubclassDirective

#subclass_directive

Methods included from Mixin::ShellOut

#run_command_compatible_options, #shell_out, #shell_out!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!

Methods included from Mixin::Command

#chdir_or_tmpdir, #handle_command_failures, #output_of_command, #run_command, #run_command_and_return_stdout_stderr, #run_command_with_systems_locale

Methods included from Mixin::Command::Windows

#popen4

Methods included from Mixin::Command::Unix

#popen4

Methods inherited from Chef::Provider

#action_nothing, #check_resource_semantics!, #cleanup_after_converge, #converge_by, #converge_if_changed, #define_resource_requirements, #events, include_resource_dsl, include_resource_dsl_module, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?, #whyrun_supported?

Methods included from Mixin::Provides

#provided_as, #provides, #provides?

Methods included from Mixin::DescendantsTracker

#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited

Methods included from DeprecatedLWRPClass

#const_missing, #register_deprecated_lwrp_class

Methods included from Mixin::PowershellOut

#powershell_out, #powershell_out!

Methods included from Mixin::WindowsArchitectureHelper

#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory

Constructor Details

#initialize(*args) ⇒ Base

Returns a new instance of Base.



68
69
70
71
# File 'lib/chef/provider/package/freebsd/base.rb', line 68

def initialize(*args)
  super
  @current_resource = Chef::Resource::Package.new(@new_resource.name)
end

Instance Method Details

#load_current_resourceObject



73
74
75
76
77
78
79
80
81
82
83
# File 'lib/chef/provider/package/freebsd/base.rb', line 73

def load_current_resource
  @current_resource.package_name(@new_resource.package_name)

  @current_resource.version(current_installed_version)
  Chef::Log.debug("#{@new_resource} current version is #{@current_resource.version}") if @current_resource.version

  @candidate_version = candidate_version
  Chef::Log.debug("#{@new_resource} candidate version is #{@candidate_version}") if @candidate_version

  @current_resource
end