error!

in lib/taste_tester/ssh_util.rb [71:98]


      def error!
        error = <<~ERRORMESSAGE
  SSH returned error while connecting to 
  The host might be broken or your SSH access is not working properly
  Try running the following command to see if ssh is good:

      

      ERRORMESSAGE

        if TasteTester::Config.ssh_cmd_gen_template
          error += <<~ERRORMESSAGE

  The above command was generated, and it may be useful to run the generator directly instead:

      
      ERRORMESSAGE
        end

        error += <<~ERRORMESSAGE

  If ssh works, add '-v' key to taste-tester to see the list of commands it's
  trying to execute, and try to run them manually on destination host
        ERRORMESSAGE
        logger.error(error)
        fail TasteTester::Exceptions::SshError
      end