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
Instead of having the wp-cli.yml SSH config contain multiple ssh commands chained together:
wp-cli.yml
ssh
cmd: ssh %pseudotty% util.example.org ssh %pseudotty% prod-util.example.org %cmd%
You can instead update your SSH config to include a ProxyCommand
ProxyCommand
ProxyCommand ssh -q util.example.org nc -q0 prod-util.example.org
So that the YML can be more simply:
cmd: ssh %pseudotty% prod-util.example.org %cmd%
The text was updated successfully, but these errors were encountered:
That is pretty useful and does indeed remove a little clutter!
Sorry, something went wrong.
No branches or pull requests
Instead of having the
wp-cli.yml
SSH config contain multiplessh
commands chained together:You can instead update your SSH config to include a
ProxyCommand
So that the YML can be more simply:
The text was updated successfully, but these errors were encountered: