# File lib/fog/softlayer/models/compute/server.rb, line 288
        def reboot(use_hard_reboot = true)
          # requires :id # TODO: debug why this breaks the tests on bare metal and uncomment this

          if bare_metal?
            service.reboot_bare_metal_server(id, use_hard_reboot)
          else
            service.reboot_vm(id, use_hard_reboot)
          end
          true
        end