We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I haven’t actually deployed ACTS yet, so forgive me and close this out if I’m misinterpreting the code.
It looks like each backup will either be daily, monthly, or yearly. This means that the first two days of the year won’t have a daily backup.
Consider instead always doing a daily backup, and then copying to monthly/yearly as needed. tarsnap -c -f monthlybackup @@dailybackup
tarsnap -c -f monthlybackup @@dailybackup
The copy operation is pretty trivial in terms of data transfer, and that way there is always a daily, monthly, and yearly backup.
The text was updated successfully, but these errors were encountered:
e4943c4
No branches or pull requests
I haven’t actually deployed ACTS yet, so forgive me and close this out if I’m misinterpreting the code.
It looks like each backup will either be daily, monthly, or yearly. This means that the first two days of the year won’t have a daily backup.
Consider instead always doing a daily backup, and then copying to monthly/yearly as needed.
tarsnap -c -f monthlybackup @@dailybackup
The copy operation is pretty trivial in terms of data transfer, and that way there is always a daily, monthly, and yearly backup.
The text was updated successfully, but these errors were encountered: