18 lines
		
	
	
		
			335 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			335 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Actions\Server;
 | |
| 
 | |
| use App\Models\Server;
 | |
| use Lorisleiva\Actions\Concerns\AsAction;
 | |
| 
 | |
| class StopSentinel
 | |
| {
 | |
|     use AsAction;
 | |
| 
 | |
|     public function handle(Server $server)
 | |
|     {
 | |
|         instant_remote_process(['docker rm -f coolify-sentinel'], $server, false);
 | |
|         $server->sentinelHeartbeat(isReset: true);
 | |
|     }
 | |
| }
 | 
