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)