# File lib/fog/rackspace/models/compute_v2/server.rb, line 98
        def reboot(type = 'SOFT')
          requires :identity
          connection.reboot_server(identity, type)
          self.state = type == 'SOFT' ? REBOOT : HARD_REBOOT
          true
        end