aboutsummaryrefslogtreecommitdiff
path: root/share/hydra
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-06-09 16:09:51 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-06-09 16:09:51 -0300
commitae233a477b2a28080c59f343e123db627b21025b (patch)
treeeb2065c7d8257dbf593aae8ec45eef4df17fd8eb /share/hydra
parent873c997347a2fe315c08291984d0187830181400 (diff)
downloadhydra-ae233a477b2a28080c59f343e123db627b21025b.tar.gz
hydra-ae233a477b2a28080c59f343e123db627b21025b.tar.bz2
Deploy: set BatchMode=yes for ssh check procedure
Diffstat (limited to 'share/hydra')
-rwxr-xr-xshare/hydra/deploy2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/hydra/deploy b/share/hydra/deploy
index c20eee2..0392f63 100755
--- a/share/hydra/deploy
+++ b/share/hydra/deploy
@@ -170,7 +170,7 @@ for node in $NODES; do
# Check for passwordless connections
# http://stackoverflow.com/questions/3830508/check-if-passwordless-access-has-been-setup#3830680
- if ! $HYDRA_CONNECT -o NumberOfPasswordPrompts=0 $FQDN true; then
+ if ! $HYDRA_CONNECT -o NumberOfPasswordPrompts=0 -o BatchMode=yes $FQDN true; then
echo "Unable to connect to $FQDN via SSH without a password."
echo "Check network connection to machine or set a passwordless login for your user at $FQDN using public key auth."
continue