mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-25 00:50:32 +00:00
Update Backup.php
This commit is contained in:
parent
cff063b61a
commit
5d42587168
1 changed files with 19 additions and 18 deletions
|
@ -61,25 +61,26 @@ class Backup extends Model
|
||||||
|
|
||||||
public function checkCronJob()
|
public function checkCronJob()
|
||||||
{
|
{
|
||||||
$cronJobCommand = 'phyre-php /usr/local/phyre/web/artisan phyre:run-backup-checks';
|
|
||||||
$findCronJob = CronJob::where('command', $cronJobCommand)->first();
|
//$cronJobCommand = 'phyre-php /usr/local/phyre/web/artisan phyre:run-backup-checks';
|
||||||
if (! $findCronJob) {
|
//$findCronJob = CronJob::where('command', $cronJobCommand)->first();
|
||||||
$cronJob = new CronJob();
|
//if (! $findCronJob) {
|
||||||
$cronJob->schedule = '*/5 * * * *';
|
// $cronJob = new CronJob();
|
||||||
$cronJob->command = $cronJobCommand;
|
// $cronJob->schedule = '*/5 * * * *';
|
||||||
$cronJob->user = 'root';
|
//$cronJob->command = $cronJobCommand;
|
||||||
$cronJob->save();
|
//$cronJob->user = 'root';
|
||||||
}
|
//$cronJob->save();
|
||||||
|
//}
|
||||||
|
|
||||||
$cronJobCommand = 'phyre-php /usr/local/phyre/web/artisan phyre:create-daily-full-backup';
|
// $cronJobCommand = 'phyre-php /usr/local/phyre/web/artisan phyre:create-daily-full-backup';
|
||||||
$findCronJob = CronJob::where('command', $cronJobCommand)->first();
|
// $findCronJob = CronJob::where('command', $cronJobCommand)->first();
|
||||||
if (! $findCronJob) {
|
// if (! $findCronJob) {
|
||||||
$cronJob = new CronJob();
|
// $cronJob = new CronJob();
|
||||||
$cronJob->schedule = '0 0 * * *';
|
// $cronJob->schedule = '0 0 * * *';
|
||||||
$cronJob->command = $cronJobCommand;
|
// $cronJob->command = $cronJobCommand;
|
||||||
$cronJob->user = 'root';
|
// $cronJob->user = 'root';
|
||||||
$cronJob->save();
|
// $cronJob->save();
|
||||||
}
|
// }
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue