OpsWorks Chef 11.10 未定义方法“属性”

OpsWorks Chef 11.10 未定义方法“属性”

Chef 11.10 运行良好,直到我们调整实例大小,现在启动时出现 setup_failed 并显示日志:

NoMethodError
-------------
undefined method `property' for #<Class:0x007f7c97afc100>


Cookbook Trace:
---------------
/var/lib/aws/opsworks/cache.stage2/cookbooks/windows/resources/auto_run.rb:22:in `class_from_file'


Relevant File Content:
----------------------
/var/lib/aws/opsworks/cache.stage2/cookbooks/windows/resources/auto_run.rb:

21:  
22>> property :program_name, String, name_property: true
23:  property :path, String, coerce: proc { |x| x.tr('/', '\\') }
24:  property :args, String
25:  property :root, Symbol,
26:           equal_to: %i(machine user),
27:           default: :machine
28:  
29:  alias_method :program, :path
30:  
31:  action :create do

Berkshelf 版本是 3.2.0。我无法通过 SSH 进入实例以获取详细日志。

答案1

很确定我在其他地方回答过你,但为了方便起见,你正在尝试使用需要 Chef 12 的 Windows 食谱版本,但你正在使用 Chef 11。你需要限制食谱版本。

相关内容