Showing the errors in the azhpc-connect

Removed the '-q' from the inner ssh to make it more obvious if the connect fails
This commit is contained in:
Paul Edwards 2020-01-13 11:27:04 +00:00
Родитель 651c61814d
Коммит 6e43bff99d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -126,5 +126,5 @@ fi
if [ "$resource_name" = "$install_node" ]; then
exec ssh -t -q $SSH_ARGS -i $ssh_private_key $ssh_user@$fqdn "$command"
else
exec ssh -t -q $SSH_ARGS -i $ssh_private_key $ssh_user@$fqdn "ssh -t -q $target \"$command\""
exec ssh -t -q $SSH_ARGS -i $ssh_private_key $ssh_user@$fqdn "ssh -t $target \"$command\""
fi