|
207 | 207 | /* |
208 | 208 | * The number of days for which backups must be kept. |
209 | 209 | */ |
210 | | - 'keep_all_backups_for_days' => 7, |
| 210 | + 'keep_all_backups_for_days' => env('ALL_BACKUP_KEEP_DAYS', 7), |
211 | 211 |
|
212 | 212 | /* |
213 | 213 | * The number of days for which daily backups must be kept. |
214 | 214 | */ |
215 | | - 'keep_daily_backups_for_days' => 16, |
| 215 | + 'keep_daily_backups_for_days' => env('DAILY_BACKUP_KEEP_DAYS', 16), |
216 | 216 |
|
217 | 217 | /* |
218 | 218 | * The number of weeks for which one weekly backup must be kept. |
219 | 219 | */ |
220 | | - 'keep_weekly_backups_for_weeks' => 8, |
| 220 | + 'keep_weekly_backups_for_weeks' => env('WEEKLY_BACKUP_KEEP_WEEKS', 8), |
221 | 221 |
|
222 | 222 | /* |
223 | 223 | * The number of months for which one monthly backup must be kept. |
224 | 224 | */ |
225 | | - 'keep_monthly_backups_for_months' => 4, |
| 225 | + 'keep_monthly_backups_for_months' => env('MONTHLY_BACKUP_KEEP_MONTHS', 4), |
226 | 226 |
|
227 | 227 | /* |
228 | 228 | * The number of years for which one yearly backup must be kept. |
229 | 229 | */ |
230 | | - 'keep_yearly_backups_for_years' => 2, |
| 230 | + 'keep_yearly_backups_for_years' => env('YEARLY_BACKUP_KEEP_YEARS', 2), |
231 | 231 |
|
232 | 232 | /* |
233 | 233 | * After cleaning up the backups remove the oldest backup until |
234 | 234 | * this amount of megabytes has been reached. |
235 | 235 | */ |
236 | | - 'delete_oldest_backups_when_using_more_megabytes_than' => 5000, |
| 236 | + 'delete_oldest_backups_when_using_more_megabytes_than' => env('BACKUP_PURGE_OLDEST_AT_MEGS', 5000), |
237 | 237 | ], |
238 | 238 | ], |
239 | 239 |
|
|
0 commit comments