我的 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
谢谢和问候, 萨沙