Chef更新配置文件

发布于 2024-11-09 06:59:46 字数 166 浏览 0 评论 0原文

我有一本厨师食谱,它安装 nginx 并安装自定义 nginx.conf 文件。它与 Opscode 上的说明书基本相同,并使用 Cookbook_file 来安装文件。

如果我对 conf 文件进行更改,然后使用 Chef 重新运行说明书,则配置文件不会更新。这看起来像是一个错误——我做错了什么吗?

I have a chef cookbook which installs nginx and install a custom nginx.conf file. It's basically the same cookbook on Opscode, and uses cookbook_file to install the file.

If I make a change to the conf file, then rerun the cookbook using chef the configuration file isn't updated. This seems like a bug -- am I doing something wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

廻憶裏菂餘溫 2024-11-16 06:59:46

在 Chef 中,菜谱中的命令顺序就是执行顺序。如果您保留了 nginx.conftemplate 并且它位于您的 cookbook_file 命令之后,则生成的模板将覆盖您的文件。

例如,

# cookbook file
cookbook_file "#{node[:nginx][:dir]}/nginx.conf" do
  source "my_nginx.conf"
  mode 0644
  owner "root"
  group "root"
end

# template
template "nginx.conf" do
  path "#{node[:nginx][:dir]}/nginx.conf"
  source "nginx.conf.erb"
  owner "root"
  group "root"
  mode 0644
  notifies :reload, "service[nginx]"
end

template 将覆盖 cookbook_file 制定的文件。

In chef that the order of commands in the recipe is the order of execution. if you kept the template for the nginx.conf and it comes after your cookbook_file command, the generated template will overwrite your file.

e.g.

# cookbook file
cookbook_file "#{node[:nginx][:dir]}/nginx.conf" do
  source "my_nginx.conf"
  mode 0644
  owner "root"
  group "root"
end

# template
template "nginx.conf" do
  path "#{node[:nginx][:dir]}/nginx.conf"
  source "nginx.conf.erb"
  owner "root"
  group "root"
  mode 0644
  notifies :reload, "service[nginx]"
end

The template would overwrite the file laid down by cookbook_file.

我做我的改变 2024-11-16 06:59:46

在测试中我发现,如果您设置了 :create_if_missing ,则如果内容已更改,则不会更新文件。设置 :create 就可以了。

In testing I have found that if you have :create_if_missing set it will not updated the file if it the contents have changed. Set :create and it will.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文