{{-- Pterodactyl - Panel --}} {{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- This software is licensed under the terms of the MIT license. --}} {{-- https://opensource.org/licenses/MIT --}} @extends('layouts.admin') @section('title') Server — {{ $server->name }}: Manage @endsection @section('content-header')

{{ $server->name }}Additional actions to control this server.

@endsection @section('content')

Reinstall Server

This will reinstall the server with the assigned pack and service scripts. Danger! This could overwrite server data.

Install Status

If you need to change the install status from uninstalled to installed, or vice versa, you may do so with the button below.

Rebuild Container

This will trigger a rebuild of the server container when it next starts up. This is useful if you modified the server configuration file manually, or something just didn't work out correctly.

@if(! $server->suspended)

Suspend Server

This will suspend the server, stop any running processes, and immediately block the user from being able to access their files or otherwise manage the server through the panel or API.

@else

Unsuspend Server

This will unsuspend the server and restore normal user access.

@endif
@endsection