]> git.proxmox.com Git - mirror_acme.sh.git/commit
Add support for DEPLOY_SSH_BATCH_MODE with default of yes.
authordkerr64 <david@kerr.net>
Sun, 23 Feb 2020 02:10:42 +0000 (21:10 -0500)
committerdkerr64 <david@kerr.net>
Sun, 23 Feb 2020 02:10:42 +0000 (21:10 -0500)
commitcc820e97c6e7cea1d5de0165bd5b7b5d84249843
tree45405a6d5f0bdf3e658421db3c30c80a6fa12921
parent283b04df739dff70ed22ee20ffac6a1c576db842
Add support for DEPLOY_SSH_BATCH_MODE with default of yes.
Before this update all remote commands were bunched together and
sent to the remote host in a single SSH command.  This could result
in a very long sequence of commands that might be rejected by a
remote host (example is VMware ESXi that uses busybox sh).
With this update you can set DEPLOY_SSH_BATCH_MODE="no" and
each remote command is sent as a separate SSH call so now we
do not have big long sequence of commands.  Defaults to same
behaviour as before this update.
deploy/ssh.sh