# File lib/fog/brightbox/models/compute/server.rb, line 83
        def reboot(use_hard_reboot = true)
          requires :identity
          if ready?
            unless use_hard_reboot
              soft_reboot
            else
              hard_reboot
            end
          else
            # Not able to reboot if not ready in the first place
            false
          end
        end