You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way of keeping a minimum number of backups safe from being pruned? I'm worried about setting PRUNE_BACKUPS_DAYS and PAUSE_IF_NO_PLAYERS=true at the same time, because, if my understanding is correct, if the server goes PRUNE_BACKUPS_DAYS days without any players then all backups would get deleted.
Maybe adding a new option like MIN_BACKUPS could be a solution to this.
The text was updated successfully, but these errors were encountered:
Maybe not useful for development of this feature, but in the meantime you can use a CRON job to at least copy the latest backup with a .backup file ending so that it doesn't get pruned. Mine looks like that, you probably need to adapt the directory.
it copies the latest backup, and if latest.tgz.backup is the latest one, it doesn't do anything. And the prune-script will not prune it because it only looks for *.tgz
Is there any way of keeping a minimum number of backups safe from being pruned? I'm worried about setting
PRUNE_BACKUPS_DAYS
andPAUSE_IF_NO_PLAYERS=true
at the same time, because, if my understanding is correct, if the server goesPRUNE_BACKUPS_DAYS
days without any players then all backups would get deleted.Maybe adding a new option like
MIN_BACKUPS
could be a solution to this.The text was updated successfully, but these errors were encountered: