This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/custom/backups/config/tasks/00-general.toml
2023-04-15 19:07:36 +02:00

29 lines
517 B
TOML

# name
name = "general"
# cron as in https://lib.rs/crate/cron
# <second> <minute> <hours> <day of month> <month> <day of the week>
cron = "0 0 2 * * *"
# retention on local server
local_retention_time = "1d"
# retention on the ftp server
remote_retention_time = "60d"
# ??? - Likely the local path
backups_dir = "/data/backups"
# base dir of what to backup
base_dir = "/host/srv"
paths = [
"cryptpad",
"gitlab",
"dendrite"
]
# run pre-backup
pre_commands = []
# run post-backup
post_commands = []