# File lib/rubyipmi/freeipmi/commands/bmcdevice.rb, line 18
    def reset(type='cold')
      if ['cold', 'warm'].include?(type)
        key = "#{type}-reset"
        command(key)
      else
        raise "reset type: #{type} is not a valid choice, use warm or cold"
      end
    end