mirror of
https://github.com/nextcloud/server.git
synced 2026-02-13 15:54:59 -05:00
27 lines
678 B
PHP
27 lines
678 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OC\Repair;
|
|
|
|
use OC\Core\BackgroundJobs\BackgroundCleanupUpdaterBackupsJob;
|
|
use OCP\BackgroundJob\IJobList;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\IRepairStep;
|
|
|
|
class AddCleanupUpdaterBackupsJob implements IRepairStep {
|
|
public function __construct(
|
|
protected readonly IJobList $jobList,
|
|
) {
|
|
}
|
|
|
|
public function getName(): string {
|
|
return 'Queue a one-time job to cleanup old backups of the updater';
|
|
}
|
|
|
|
public function run(IOutput $output): void {
|
|
$this->jobList->add(BackgroundCleanupUpdaterBackupsJob::class);
|
|
}
|
|
}
|