From 70d5987d4cf53391a2fedbab637d4145aa83dc52 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 5 Dec 2021 13:45:42 +0100 Subject: [PATCH] chore: update default config --- README.md | 2 +- config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2158e2c..8613420 100644 --- a/README.md +++ b/README.md @@ -39,4 +39,4 @@ Default: `3h` How many backups to keep. If more backups are stored in the backup folder, the oldest one will be removed until there are only as many as this config variable. -Default: `24` +Default: `12` diff --git a/config.go b/config.go index 8c9b668..6a84550 100644 --- a/config.go +++ b/config.go @@ -34,7 +34,7 @@ func init() { config = &conf{ Folder: "/backups/", Interval: time.Hour * 6, - MaxBackups: 10, + MaxBackups: 12, } folder, has := os.LookupEnv(envBackupFolder)