厨师12.4 windows_feature与not_if

时间:2015-11-08 11:01:19

标签: ruby powershell chef

我使用Chef 12.4并在本地模式下使用chef-client。我在安装或删除之前尝试安装Windows功能并检测其当前状态。使用not if的原因是因为在使用DISM时需要检查当前状态。

目前我有一台服务器需要45分钟才能完成,然后20分钟即可在没有任何事情的情况下运行厨师。

我使用了以下Powershell脚本' service-check.ps1'输出包的状态,由配方本身实现:

$content = Get-Content .\features.txt
$feature = $args[0]

function grep($f) {
  foreach($_ in $content){
    $data = $_.split("|")
    %{if($($data[0]) -match $f) {return "$($data[1])"}}
  }
}

grep $feature

我使用的食谱写了' features.txt'通过查询dism获取当前功能及其状态,将文件归档到运行Chef的位置。配方文件如下:

#Check the features and their current state
powershell_script 'installed_features' do
  code <<-EOH
    dism /online /get-features /format:table > c://chef//features.txt
  EOH
end

cookbook_file 'C:\Scripts\service-check.ps1' do
  source 'service-check.ps1'
end

windows_feature 'TelnetClient' do
  action :remove
  only_if {
    status = powershell_out("Powershell -f C:\\scripts\\service-check.ps1 TelnetClient").stdout.chop
    Disabled != status
  }
end

我在only_if {}段中尝试了很多不同的格式,但是没有一种格式有效。我使用了这里的例子: http://pdalinis.blogspot.co.uk/2013/09/chef-using-powershell-as-conditional.html

我得到的输出是:

* windows_feature[TelnetClient] action remove

================================================================================
Error executing action `remove` on resource 'windows_feature[TelnetClient]'
================================================================================

NameError
---------
uninitialized constant Chef::Recipe::Disabled

Resource Declaration:
---------------------
# In C:/chef/local-mode-cache/cache/cookbooks/tester/recipes/default.rb

 12: windows_feature 'TelnetClient' do
 13:   action :remove
 14:   only_if {
 15:     status = powershell_out("Powershell -f C:\\scripts\\service-check.ps1 TelnetClient").stdout.chop
 16:     Disabled != status
 17:   }
 18: end

Compiled Resource:
------------------
# Declared in C:/chef/local-mode-cache/cache/cookbooks/tester/recipes/default.rb:12:in `from_file'

windows_feature("TelnetClient") do
  provider LWRP provider windows_feature_dism from cookbook windows
  action [:remove]
  retries 0
  retry_delay 2
  default_guard_interpreter :default
  declared_type :windows_feature
  cookbook_name "tester"
  recipe_name "default"
  only_if { #code block }
end

我是Chef,Ruby和Powershell的新手。我假设only_if或not_if期望得到真或假结果,但是这似乎是附加了我已添加检查的书面状态(在此脚本中,已禁用)。

我检查了powershell脚本,确实根据状态输出Enabed / Disabled。

我的问题是:

  1. 是否有可能以这种方式使用windows_feature和powershell_out,根据它使用powershell_script的示例,但我宁愿使用windows_feature规范来安装功能。

    < / LI>
  2. 如果有可能,我做错了什么?我觉得它可能是脚本的输出,因为它似乎插入了一个空格: &#34;启用&#34; &#34;禁用&#34;

  3. 如果不可能,还有其他办法吗?

  4. 我非常感谢任何帮助。 谢谢。

1 个答案:

答案 0 :(得分:1)

您是否可以引用"Disabled"?否则Ruby会试图找出它是什么,但不知道任何具有该名称的变量或类。