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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
#
# Author:: Adam Edwards (<adamed@getchef.com>)
#
# Copyright:: Copyright 2014-2016, Chef Software, Inc.
#
# 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/util/powershell/cmdlet"
require "chef/util/dsc/local_configuration_manager"
require "chef/mixin/powershell_type_coercions"
require "chef/util/dsc/resource_store"
class Chef
class Provider
class DscResource < Chef::Provider
include Chef::Mixin::PowershellTypeCoercions
provides :dsc_resource, os: "windows"
def initialize(new_resource, run_context)
super
@new_resource = new_resource
@module_name = new_resource.module_name
@reboot_resource = nil
end
def action_run
if ! test_resource
converge_by(generate_description) do
result = set_resource
reboot_if_required
end
end
end
def load_current_resource
end
def whyrun_supported?
true
end
def define_resource_requirements
requirements.assert(:run) do |a|
a.assertion { supports_dsc_invoke_resource? }
err = ["You must have Powershell version >= 5.0.10018.0 to use dsc_resource."]
a.failure_message Chef::Exceptions::ProviderNotFound,
err
a.whyrun err + ["Assuming a previous resource installs Powershell 5.0.10018.0 or higher."]
a.block_action!
end
requirements.assert(:run) do |a|
a.assertion { supports_refresh_mode_enabled? || dsc_refresh_mode_disabled? }
err = ["The LCM must have its RefreshMode set to Disabled for" \
" PowerShell versions before 5.0.10586.0."]
a.failure_message Chef::Exceptions::ProviderNotFound, err.join(" ")
a.whyrun err + ["Assuming a previous resource sets the RefreshMode."]
a.block_action!
end
end
protected
def local_configuration_manager
@local_configuration_manager ||= Chef::Util::DSC::LocalConfigurationManager.new(
node,
nil,
)
end
def resource_store
Chef::Util::DSC::ResourceStore.instance
end
def supports_dsc_invoke_resource?
run_context && Chef::Platform.supports_dsc_invoke_resource?(node)
end
def dsc_refresh_mode_disabled?
Chef::Platform.dsc_refresh_mode_disabled?(node)
end
def supports_refresh_mode_enabled?
Chef::Platform.supports_refresh_mode_enabled?(node)
end
def generate_description
@converge_description
end
def dsc_resource_name
new_resource.resource.to_s
end
def module_name
@module_name ||= begin
found = resource_store.find(dsc_resource_name)
r = case found.length
when 0
raise Chef::Exceptions::ResourceNotFound,
"Could not find #{dsc_resource_name}. Check to make "\
"sure that it shows up when running Get-DscResource"
when 1
if found[0]["Module"].nil?
:none
else
found[0]["Module"]["Name"]
end
else
raise Chef::Exceptions::MultipleDscResourcesFound, found
end
end
end
def test_resource
result = invoke_resource(:test)
@converge_description = result.stream(:verbose)
# We really want this information from the verbose stream,
# however in some versions of WMF, Invoke-DscResource is not correctly
# writing to that stream and instead just dumping to stdout
if @converge_description.empty?
@converge_description = result.stdout
end
return_dsc_resource_result(result, "InDesiredState")
end
def set_resource
result = invoke_resource(:set)
if return_dsc_resource_result(result, "RebootRequired")
create_reboot_resource
end
result.return_value
end
def invoke_resource(method, output_format=:object)
properties = translate_type(@new_resource.properties)
switches = "-Method #{method} -Name #{@new_resource.resource}"\
" -Property #{properties} -Verbose"
if module_name != :none
switches += " -Module #{module_name}"
end
cmdlet = Chef::Util::Powershell::Cmdlet.new(
node,
"Invoke-DscResource #{switches}",
output_format,
)
cmdlet.run!({}, {:timeout => new_resource.timeout})
end
def return_dsc_resource_result(result, property_name)
if result.return_value.is_a?(Array)
# WMF Feb 2015 Preview
result.return_value[0][property_name]
else
# WMF April 2015 Preview
result.return_value[property_name]
end
end
def create_reboot_resource
@reboot_resource = Chef::Resource::Reboot.new(
"Reboot for #{@new_resource.name}",
run_context,
).tap do |r|
r.reason("Reboot for #{@new_resource.resource}.")
end
end
def reboot_if_required
reboot_action = @new_resource.reboot_action
unless @reboot_resource.nil?
case reboot_action
when :nothing
Chef::Log.debug("A reboot was requested by the DSC resource, but reboot_action is :nothing.")
Chef::Log.debug("This dsc_resource will not reboot the node.")
else
Chef::Log.debug("Requesting node reboot with #{reboot_action}.")
@reboot_resource.run_action(reboot_action)
end
end
end
end
end
end
|