2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $commands = [
|
|
|
|
Commands\PaveIt::class,
|
|
|
|
Commands\CreateAdmin::class,
|
|
|
|
Commands\SendExpirationAlerts::class,
|
|
|
|
Commands\SendInventoryAlerts::class,
|
|
|
|
Commands\AssetImportCommand::class,
|
|
|
|
Commands\LicenseImportCommand::class,
|
|
|
|
Commands\Versioning::class,
|
|
|
|
Commands\SystemBackup::class,
|
2016-04-14 11:59:01 -07:00
|
|
|
Commands\DisableLDAP::class,
|
2016-04-19 00:47:32 -07:00
|
|
|
Commands\Purge::class,
|
2016-03-25 01:18:05 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
|
|
|
|
2016-04-19 04:36:36 -07:00
|
|
|
$schedule->command('snipeit:inventory-alerts')->daily();
|
|
|
|
$schedule->command('snipeit:expiring-alerts')->daily();
|
2016-03-25 01:18:05 -07:00
|
|
|
$schedule->command('snipeit:backup')->weekly();
|
2016-05-12 16:54:07 -07:00
|
|
|
$schedule->command('backup:clean')->daily();
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
}
|