We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you have more then one host (let say 3), you will get 3 tables for config:hosts
deploy.php
<?php namespace Deployer; require_once 'recipe/common.php'; host('host1.net'); host('host2.net'); host('host3.net');
>php vendor/bin/dep --file=deploy_bug.php config:hosts -vvv ➤ Executing task config:hosts +-----------+-----------+-------+-------+-------------+ | Host | Hostname | Stage | Roles | Deploy path | +-----------+-----------+-------+-------+-------------+ | host1.net | host1.net | | | | | host2.net | host2.net | | | | | host3.net | host3.net | | | | +-----------+-----------+-------+-------+-------------+ • done on [host1.net] +-----------+-----------+-------+-------+-------------+ | Host | Hostname | Stage | Roles | Deploy path | +-----------+-----------+-------+-------+-------------+ | host1.net | host1.net | | | | | host2.net | host2.net | | | | | host3.net | host3.net | | | | +-----------+-----------+-------+-------+-------------+ • done on [host2.net] +-----------+-----------+-------+-------+-------------+ | Host | Hostname | Stage | Roles | Deploy path | +-----------+-----------+-------+-------+-------------+ | host1.net | host1.net | | | | | host2.net | host2.net | | | | | host3.net | host3.net | | | | +-----------+-----------+-------+-------+-------------+ • done on [host3.net] ✔ Ok [5ms]
The text was updated successfully, but these errors were encountered:
Funny =)
Sorry, something went wrong.
Merge pull request #1405 from coldstriker/bugfix/1403
064a6b9
Fixed bug when config:hosts shows more than one table of hosts #1403
Hey @antonmedv , this issue was already mentioned and merged. I think it should be closed.
No branches or pull requests
Description
If you have more then one host (let say 3), you will get 3 tables for config:hosts
Content of
deploy.php
Output log
The text was updated successfully, but these errors were encountered: