我有一个自定义资源(在我的食谱的 /resources 文件夹中的一个名为 dsc_class.rb 的文件中)。基本上,这是一种无需安装和使用完整 DSC 引擎即可轻松调用 DSC 类资源的方法。
resource_name :dsc_class
default_action :create
property :file_name, kind_of: String, required: true, name_property: true
action :create do
powershell_script file_name do
cwd ::File.dirname(file_name)
code <<-EOH
gc "#{file_name}" -Raw | iex
$o = New-Object #{file_name.split('/').last.split('.').first}
$o.Set()
EOH
not_if <<-EOH
gc "#{file_name}" -Raw | iex
$o = New-Object #{file_name.split('/').last.split('.').first}
o.Test()
EOH
end
end
效果很好 - 但动作总是“执行”,所以当资源保护和 powershell 脚本不执行时,我在主厨客户端运行的日志/输出中得到“x 资源更新”。
如何在我的自定义资源中进行适当的保护?
更新:配方包含
dsc_class "/install/dsc/MyDscResource.ps1"