I use the rake task to create backups for GitLab 6.8.2.
gitlab-rake gitlab:backup:create
In /etc/gitlab/gitlab.rb
I added the following line:
gitlab_rails['backup_keep_time'] = 60
This is supposed to prune backups older than 60 seconds. My expectation was that a second run of gitlab:backup:create
would remove the first backup if 60 seconds have passed. Though the last line in the output is
Deleting old backups ... skipping
How do I configure GitLab to actually remove old backups?