0

我有一个自定义资源(在我的食谱的 /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"
4

1 回答 1

1

powershell_script就像所有其他execute风格的资源一样,它总是运行命令/脚本/任何东西并依赖于外层not_ifonly_if子句。在这种情况下,您可以将它们放在dsc_class配方代码中的资源实例上。

于 2016-07-06T22:40:06.107 回答