mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 15:26:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Console;
 | |
| 
 | |
| use Pterodactyl\Models\ActivityLog;
 | |
| use Illuminate\Console\Scheduling\Schedule;
 | |
| use Illuminate\Database\Console\PruneCommand;
 | |
| use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
 | |
| use Pterodactyl\Console\Commands\Schedule\ProcessRunnableCommand;
 | |
| use Pterodactyl\Console\Commands\Maintenance\PruneOrphanedBackupsCommand;
 | |
| use Pterodactyl\Console\Commands\Maintenance\CleanServiceBackupFilesCommand;
 | |
| 
 | |
| class Kernel extends ConsoleKernel
 | |
| {
 | |
|     /**
 | |
|      * Register the commands for the application.
 | |
|      */
 | |
|     protected function commands()
 | |
|     {
 | |
|         $this->load(__DIR__ . '/Commands');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the application's command schedule.
 | |
|      */
 | |
|     protected function schedule(Schedule $schedule)
 | |
|     {
 | |
|         // Execute scheduled commands for servers every minute, as if there was a normal cron running.
 | |
|         $schedule->command(ProcessRunnableCommand::class)->everyMinute()->withoutOverlapping();
 | |
|         $schedule->command(CleanServiceBackupFilesCommand::class)->daily();
 | |
| 
 | |
|         if (config('backups.prune_age')) {
 | |
|             // Every 30 minutes, run the backup pruning command so that any abandoned backups can be deleted.
 | |
|             $schedule->command(PruneOrphanedBackupsCommand::class)->everyThirtyMinutes();
 | |
|         }
 | |
| 
 | |
|         if (config('activity.prune_days')) {
 | |
|             $schedule->command(PruneCommand::class, ['--model' => [ActivityLog::class]])->daily();
 | |
|         }
 | |
|     }
 | |
| }
 | 
