Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-09 21:50:09 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-09 21:50:09 +0400
commit4e9add7c2c118a16b205cef9ccf7bfb314116844 (patch)
treeb1518e38f1dc483c44d064098b558c8b6221f993 /app/models
parentfae6eb63535f6136704365692f4c34ccfd6eba67 (diff)
parent944ebb8e2e06ac916024eed48ab7dc4b29f76de2 (diff)
Merge branch 'clean_old_archives' into 'master'
Clean old archives from repository downloads directory
Diffstat (limited to 'app/models')
-rw-r--r--app/models/repository.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/repository.rb b/app/models/repository.rb
index 35ec84f1651..eadc34127c2 100644
--- a/app/models/repository.rb
+++ b/app/models/repository.rb
@@ -215,4 +215,9 @@ class Repository
def last_commit_for_path(sha, path)
commits(sha, path, 1).last
end
+
+ # Remove archives older than 2 hours
+ def clean_old_archives
+ Gitlab::Popen.popen(%W(find #{Gitlab.config.gitlab.repository_downloads_path} -mmin +120 -delete))
+ end
end