# File lib/rubyipmi/commands/basecommand.rb, line 60
    def runcmd_without_opts(args=[], debug=false)

      @success = false
      result = catch(:ipmierror){
        @success = run_without_opts(args, debug)

      }
      # if error occurs try and find the fix and rerun the method
      if result and not @success
        findfix(result, args, debug, "runcmd_with_args")
      end
      return @success
    end