backup/archive-schedule¶
Location where backup archives (tarballs) will be stored
Controls when backup archives are created using the ROFS library. This parameter accepts a configuration with an interval type and optional time value.
Available interval types: - "always": Create an archive for every backup operation (default behavior) - "daily": Create an archive once per day at the specified hour - "weekly": Create an archive once per week on the specified day (0-6, Sunday=0) - "monthly": Create an archive once per month on the specified day (1-31)
Example for monthly archiving on the 12th day:
json
{
"interval": "monthly",
"time": 12
}
Example for always creating archives (no time needed):
json
{
"interval": "always"
}
If no value is provided, the system defaults to "always" mode.