update server check
This commit is contained in:
parent
ad671cfcf1
commit
581930d8c6
@ -38,12 +38,20 @@ class Form extends Component
|
||||
public function checkServer()
|
||||
{
|
||||
try {
|
||||
|
||||
$this->uptime = instantRemoteProcess(['uptime'], $this->server);
|
||||
$this->uptime = instantRemoteProcess(['uptime'], $this->server, false);
|
||||
if (!$this->uptime) {
|
||||
$this->uptime = 'Server not reachable.';
|
||||
throw new \Exception('Server not reachable.');
|
||||
}
|
||||
$this->dockerVersion = instantRemoteProcess(['docker version|head -2|grep -i version'], $this->server, false);
|
||||
if (!$this->dockerVersion) {
|
||||
$this->dockerVersion = 'Not installed.';
|
||||
}
|
||||
$this->dockerComposeVersion = instantRemoteProcess(['docker compose version|head -2|grep -i version'], $this->server, false);
|
||||
if (!$this->dockerComposeVersion) {
|
||||
$this->dockerComposeVersion = 'Not installed.';
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
$this->addError('server.ip', $e->getMessage());
|
||||
}
|
||||
}
|
||||
public function submit()
|
||||
|
@ -22,14 +22,17 @@
|
||||
Submit
|
||||
</button>
|
||||
<button wire:click.prevent='checkServer'>Check Server</button>
|
||||
<button wire:click.prevent='installDocker'>Install Docker</button>
|
||||
{{-- <button wire:click.prevent='installDocker'>Install Docker</button> --}}
|
||||
</div>
|
||||
</form>
|
||||
@isset($uptime)
|
||||
<p>Connection OK</p>
|
||||
<p>Uptime: {{ $uptime }}</p>
|
||||
<p>{{ $dockerVersion }}</p>
|
||||
<p>{{ $dockerComposeVersion }}</p>
|
||||
@endisset
|
||||
@isset($dockerVersion)
|
||||
<p>Docker Engine: {{ $dockerVersion }}</p>
|
||||
@endisset
|
||||
@isset($dockerComposeVersion)
|
||||
<p>Docker Compose: {{ $dockerComposeVersion }}</p>
|
||||
@endisset
|
||||
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user