Pull backup:clean settings into config

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2025-01-07 11:17:43 +00:00
parent f698f74d3e
commit 774e795d97
2 changed files with 12 additions and 6 deletions

View file

@ -80,6 +80,12 @@ MAIL_BACKUP_NOTIFICATION_ADDRESS=null
BACKUP_ENV=true BACKUP_ENV=true
ALLOW_BACKUP_DELETE=false ALLOW_BACKUP_DELETE=false
ALLOW_DATA_PURGE=false ALLOW_DATA_PURGE=false
ALL_BACKUP_KEEP_DAYS=7
DAILY_BACKUP_KEEP_DAYS=16
WEEKLY_BACKUP_KEEP_WEEKS=8
MONTHLY_BACKUP_KEEP_MONTHS=4
YEARLY_BACKUP_KEEP_YEARS=2
BACKUP_PURGE_OLDEST_AT_MEGS=5000
# -------------------------------------------- # --------------------------------------------
# OPTIONAL: SESSION SETTINGS # OPTIONAL: SESSION SETTINGS

View file

@ -207,33 +207,33 @@ return [
/* /*
* The number of days for which backups must be kept. * The number of days for which backups must be kept.
*/ */
'keep_all_backups_for_days' => 7, 'keep_all_backups_for_days' => env('ALL_BACKUP_KEEP_DAYS', 7),
/* /*
* The number of days for which daily backups must be kept. * The number of days for which daily backups must be kept.
*/ */
'keep_daily_backups_for_days' => 16, 'keep_daily_backups_for_days' => env('DAILY_BACKUP_KEEP_DAYS', 16),
/* /*
* The number of weeks for which one weekly backup must be kept. * The number of weeks for which one weekly backup must be kept.
*/ */
'keep_weekly_backups_for_weeks' => 8, 'keep_weekly_backups_for_weeks' => env('WEEKLY_BACKUP_KEEP_WEEKS', 8),
/* /*
* The number of months for which one monthly backup must be kept. * The number of months for which one monthly backup must be kept.
*/ */
'keep_monthly_backups_for_months' => 4, 'keep_monthly_backups_for_months' => env('MONTHLY_BACKUP_KEEP_MONTHS', 4),
/* /*
* The number of years for which one yearly backup must be kept. * The number of years for which one yearly backup must be kept.
*/ */
'keep_yearly_backups_for_years' => 2, 'keep_yearly_backups_for_years' => env('YEARLY_BACKUP_KEEP_YEARS', 2),
/* /*
* After cleaning up the backups remove the oldest backup until * After cleaning up the backups remove the oldest backup until
* this amount of megabytes has been reached. * this amount of megabytes has been reached.
*/ */
'delete_oldest_backups_when_using_more_megabytes_than' => 5000, 'delete_oldest_backups_when_using_more_megabytes_than' => env('BACKUP_PURGE_OLDEST_AT_MEGS', 5000),
], ],
], ],