Update ModelPhyreServerCreatedListener.php

This commit is contained in:
Bozhidar Slaveykov 2024-04-06 18:31:58 +03:00
parent da6c1873ad
commit a5b1be66e4

View file

@ -30,13 +30,8 @@ class ModelPhyreServerCreatedListener
$ssh = new SSH2($ip);
if ($ssh->login($username, $password)) {
$output = $ssh->exec('ls -la');
echo $output;
} else {
echo 'SSH login failed.';
$ssh->exec('wget https://raw.githubusercontent.com/CloudVisionApps/PhyrePanel/main/installers/install.sh && chmod +x install.sh && ./install.sh >phyre-install.log 2>&1 </dev/null &');
}
dd(3);
}
}