diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-15 13:00:34 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-15 13:00:34 +0100 |
commit | bd9d3b0f7d83256f97940043693fd52a62c6198a (patch) | |
tree | 5cd1ebdad7c0e4e3e655e2c39e0a033623d5c999 /data | |
parent | cbb41241d4ecfe74d701edf100df6260dfbce1ce (diff) |
Add support for monthly backups to db_json.
Diffstat (limited to 'data')
-rw-r--r-- | data/anope.example.conf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/data/anope.example.conf b/data/anope.example.conf index c21aa343f..4c09f3a5e 100644 --- a/data/anope.example.conf +++ b/data/anope.example.conf @@ -1165,14 +1165,15 @@ module module_database = "{name}.module.json" /* - * Sets how many days worth of backups should be kept. + * Sets how many days and months worth of backups should be kept. * * It is recommended that at the very least you keep one backup. Failure to * do so may result in total data loss if you ever run out of disk space or * have a power failure during a database write. However, if you're *REALLY* - * sure this won't happen you can disable backups by setting this to 0. + * sure this won't happen you can disable backups by setting these to 0. */ - backups = 14 + daily_backups = 7 + monthly_backups = 3 /* * The directory in which backups are kept. |