# File lib/rubyipmi/ipmitool/commands/chassis.rb, line 64
    def bootdisk(reboot=false,persistent=false)
      bootstatus = config.bootdisk(persistent)
      # Only reboot if setting the boot flag was successful
      if reboot and bootstatus
        power.cycle
      end
      return bootstatus
    end