chef deploy start service and restart service in sequence
- by Ryan
Chef stop and start service in sequence and would like to ask different procedure.
Step 1: framework bootstrap to jboss service
bash "bootstrap application" do
code <<-EOF
ant bootstrap
EOF
end
Step 2: then start jboss
service "jboss" do
action :start
end
Step 3: install application
bash "install application" do
…