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, #define_resource_requirements, #expand_options, #get_preseed_file, #install_package, #preseed_package, #preseed_resource, #purge_package, #reconfig_package, #remove_package, #removing_package?, #target_version_already_installed?, #upgrade_package, #whyrun_supported?

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, #cleanup_after_converge, #converge_by, #define_resource_requirements, #events, #node, node_map, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, #whyrun_mode?, #whyrun_supported?

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 Mixin::ShellOut

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

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