Browse Source

Update ModelPhyreServerCreatedListener.php

Bozhidar Slaveykov 1 năm trước cách đây
mục cha
commit
a5b1be66e4

+ 1 - 6
web/app/Listeners/ModelPhyreServerCreatedListener.php

@@ -30,13 +30,8 @@ class ModelPhyreServerCreatedListener
 
 
         $ssh = new SSH2($ip);
         $ssh = new SSH2($ip);
         if ($ssh->login($username, $password)) {
         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);
-
     }
     }
 }
 }