gpt4 book ai didi

ruby - 如果源文件存在,如何编写 Chef Recipe 来复制文件? only_if 守卫不工作

转载 作者:太空宇宙 更新时间:2023-11-03 18:05:19 25 4
gpt4 key购买 nike

我目前正在编写一个简单的脚本来在 Chef 部署期间处理属性文件。我正在使用 chef-apply script.rb

执行以下代码
class_path = '/var/lib/tomcat/webapps/ROOT/WEB-INF/classes'
file '/home/corp/working/corp.properties' do
owner 'root'
group 'root'
mode 0644
p File.exist?("#{class_path}")
content File.open("#{class_path}/corp.properties").read
action :create_if_missing
only_if { File.exist?("#{class_path}/corp.properties") }
end

但是运行出错

false
[2017-12-20T11:37:40-05:00] FATAL: Stacktrace dumped to /home/corp/.chef/cache/chef-stacktrace.out
[2017-12-20T11:37:40-05:00] FATAL: Stacktrace dumped to /home/corp/.chef/cache/chef-stacktrace.out
[2017-12-20T11:37:40-05:00] FATAL: Please provide the contents of the stacktrace.out file if you file a bug report
[2017-12-20T11:37:40-05:00] FATAL: Please provide the contents of the stacktrace.out file if you file a bug report
[2017-12-20T11:37:40-05:00] FATAL: Errno::ENOENT: No such file or directory @ rb_sysopen - /var/lib/tomcat/webapps/ROOT/WEB-INF/classes/corp.properties
[2017-12-20T11:37:40-05:00] FATAL: Errno::ENOENT: No such file or directory @ rb_sysopen - /var/lib/tomcat/webapps/ROOT/WEB-INF/classes/corp.properties

如您所见,即使 File.exist? 调用返回 false,File.open 仍在执行,而不管守卫如何。

最佳答案

资源 block 中的任何代码默认在编译时运行。 guard 在汇合时间运行。您可以通过使其 content lazy { File.open("#{class_path}/corp.properties").read } 强制文件读取发生在收敛时间来解决此问题。参见 https://coderanger.net/two-pass/了解更多信息。

关于ruby - 如果源文件存在,如何编写 Chef Recipe 来复制文件? only_if 守卫不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47910685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com