# # Authors:: Bryan McLellan (btm@loftninjas.org) # Matthew Landauer (matthew@openaustralia.org) # Copyright:: Copyright (c) 2009 Bryan McLellan, Matthew Landauer # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'chef/provider/package' require 'chef/mixin/command' require 'chef/resource/package' class Chef class Provider class Package class Freebsd < Chef::Provider::Package def initialize(*args) super @current_resource = Chef::Resource::Package.new(@new_resource.name) end def current_installed_version command = "pkg_info -E \"#{package_name}*\"" status = popen4(command) do |pid, stdin, stdout, stderr| stdout.each do |line| case line when /^#{package_name}-(.+)/ return $1 end end end unless status.exitstatus == 0 || status.exitstatus == 1 raise Chef::Exceptions::Package, "#{command} failed - #{status.inspect}!" end nil end def port_path case @new_resource.package_name # When the package name starts with a '/' treat it as the full path to the ports directory when /^\// @new_resource.package_name # Otherwise if the package name contains a '/' not at the start (like 'www/wordpress') treat as a relative # path from /usr/ports when /\// "/usr/ports/#{@new_resource.package_name}" # Otherwise look up the path to the ports directory using 'whereis' else popen4("whereis -s #{@new_resource.package_name}") do |pid, stdin, stdout, stderr| stdout.each do |line| case line when /^#{@new_resource.package_name}:\s+(.+)$/ return $1 end end end raise Chef::Exceptions::Package, "Could not find port with the name #{@new_resource.package_name}" end end def ports_makefile_variable_value(variable) command = "cd #{port_path}; make -V #{variable}" status = popen4(command) do |pid, stdin, stdout, stderr| return stdout.readline.strip end unless status.exitstatus == 0 || status.exitstatus == 1 raise Chef::Exceptions::Package, "#{command} failed - #{status.inspect}!" end nil end def ports_candidate_version ports_makefile_variable_value("PORTVERSION") end def load_current_resource @current_resource.package_name(@new_resource.package_name) @current_resource.version(current_installed_version) Chef::Log.debug("Current version is #{@current_resource.version}") if @current_resource.version @candidate_version = ports_candidate_version Chef::Log.debug("Ports candidate version is #{@candidate_version}") if @candidate_version @current_resource end def latest_link_name ports_makefile_variable_value("LATEST_LINK") end # The name of the package (without the version number) as understood by pkg_add and pkg_info def package_name if ports_makefile_variable_value("PKGNAME") =~ /^(.+)-[^-]+$/ $1 else raise Chef::Exceptions::Package, "Unexpected form for PKGNAME variable in #{port_path}/Makefile" end end def install_package(name, version) unless @current_resource.version case @new_resource.source when /^ports$/ run_command_with_systems_locale( :command => "make -DBATCH install", :cwd => "#{port_path}" ) when /^http/, /^ftp/ run_command_with_systems_locale( :command => "pkg_add -r #{package_name}", :environment => { "PACKAGESITE" => @new_resource.source } ) Chef::Log.info("Installed package #{package_name} from: #{@new_resource.source}") when /^\// run_command_with_systems_locale( :command => "pkg_add #{@new_resource.name}", :environment => { "PKG_PATH" => @new_resource.source } ) Chef::Log.info("Installed package #{@new_resource.name} from: #{@new_resource.source}") else run_command_with_systems_locale( :command => "pkg_add -r #{latest_link_name}" ) Chef::Log.info("Installed package #{package_name}") end end end def remove_package(name, version) # a version is mandatory if version run_command_with_systems_locale( :command => "pkg_delete #{package_name}-#{version}" ) else run_command_with_systems_locale( :command => "pkg_delete #{package_name}-#{@current_resource.version}" ) end end end end end end