Closed odombrovskyi-dev closed 10 years ago
Specifying multiple hosts in $env->app()
will attempt to deploy to all of those servers. Can you provide more information? Or the output from deploy:update
?
Acutally, you may have stumbled onto a bug! Multiple app
and db
endpoints are not currently in the test bed. Let me take a look and see if they are indeed working.
There is no any specific output information task start upload to the first server and after that deploy:update ends. That is all.
@farwless yep, this was broken. Patch coming up!
In release 0.4.4
thanks a lot. Works well
I have code like this: $env->user('user'); $env->repository('repo'); $env->scm('svn'); $env->deploy_to('/var/web'); $env->key_path("key"); $env->app(array('server1.com','server2.com'));
When i run deploy:update this command perform deploy only on the first server in the list. It there some additional options that enables deploying process on multiple servers?