diff options
-rwxr-xr-x | share/hydra/deploy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/hydra/deploy b/share/hydra/deploy index aed00fc..687ddaf 100755 --- a/share/hydra/deploy +++ b/share/hydra/deploy @@ -120,8 +120,8 @@ for node in $NODES; do # http://stackoverflow.com/questions/3830508/check-if-passwordless-access-has-been-setup#3830680 if ! $HYDRA_CONNECT -o NumberOfPasswordPrompts=0 $FQDN true; then echo "Unable to connect to $FQDN via SSH without a password." - echo "Please set a passwordless login for your user at $FQDN using public key auth." - exit 1 + echo "Check network connection to machine or set a passwordless login for your user at $FQDN using public key auth." + continue fi # Check remote environment |