# File lib/rubyipmi.rb, line 83
    def self.printdiag(user, pass, host)
      @conn = Rubyipmi::connect(user, pass, host)
      puts "Product: #{@conn.fru.product}"
      puts "Manufacturer: #{@conn.fru.manufacturer}"
      puts "BMC Info #{@conn.bmc.info.inspect}\n"
      puts "Please email to corey@logicminds.biz when troubleshooting"
      return true
    end