1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#
# Author:: Jason J. W. Williams (<williamsjj@digitar.com>)
# Author:: Stephen Nelson-Smith (<sns@chef.io>)
# Copyright:: Copyright 2011-2018, Chef Software Inc.
# 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 "open3"
require_relative "../package"
require_relative "../../resource/package"
class Chef
class Provider
class Package
class Ips < Chef::Provider::Package
provides :package, platform: %w{openindiana opensolaris omnios solaris2}
provides :ips_package
attr_accessor :virtual
def define_resource_requirements
super
requirements.assert(:all_actions) do |a|
a.assertion { !@candidate_version.nil? }
a.failure_message Chef::Exceptions::Package, "Package #{new_resource.package_name} not found"
a.whyrun "Assuming package #{new_resource.package_name} would have been made available."
end
end
def get_current_version
shell_out("pkg", "info", new_resource.package_name).stdout.each_line do |line|
return $1.split[0] if line =~ /^\s+Version: (.*)/
end
nil
end
def get_candidate_version
shell_out!("pkg", "info", "-r", new_resource.package_name).stdout.each_line do |line|
return $1.split[0] if line =~ /Version: (.*)/
end
nil
end
def load_current_resource
@current_resource = Chef::Resource::IpsPackage.new(new_resource.name)
current_resource.package_name(new_resource.package_name)
logger.trace("Checking package status for #{new_resource.package_name}")
current_resource.version(get_current_version)
@candidate_version = get_candidate_version
current_resource
end
def install_package(name, version)
command = [ "pkg", options, "install", "-q" ]
command << "--accept" if new_resource.accept_license
command << "#{name}@#{version}"
shell_out!(command)
end
def upgrade_package(name, version)
install_package(name, version)
end
def remove_package(name, version)
package_name = "#{name}@#{version}"
shell_out!( "pkg", options, "uninstall", "-q", package_name )
end
end
end
end
end
|