# File lib/rubyipmi/ipmitool/commands/chassisconfig.rb, line 17
    def bootdevice(device, persistent=false)
      if persistent
        @options["cmdargs"] = "chassis bootdev #{device}"
      else
        @options["cmdargs"] = "chassis bootparam set bootflag force_#{device}"
      end
      value = runcmd
      @options.delete_notify("cmdargs")
      return value
    end