0

我的 JBoss-cookbook 有问题,该服务在 /etc/init.d 中正确创建,可以使用 service start/stop/restart jboss 启动/停止/重新启动,但在 Chef 完成部署后它没有启动基础设施。

这是我的食谱中创建服务的部分。

template "jboss" do
  path "/etc/init.d/jboss"
  source "init_deb.erb"
  owner "root"
  group "root"
  mode "0755"
end

service "jboss" do
  supports :restart => true, :start => true, :stop => true
  action [ :enable, :start ]
end

execute 'wait for JBoss' do
  command 'sleep 5'
  action :nothing
end

谢谢和问候, 萨沙

4

1 回答 1

-1

好的,我明白了,这是我的运行级别脚本中的某种竞争条件,我的 Cookbook 非常好。

于 2014-03-13T21:12:57.753 回答