summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/lfs/check.rake
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/gitlab/lfs/check.rake')
-rw-r--r--lib/tasks/gitlab/lfs/check.rake8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/tasks/gitlab/lfs/check.rake b/lib/tasks/gitlab/lfs/check.rake
new file mode 100644
index 00000000000..869463d4e5d
--- /dev/null
+++ b/lib/tasks/gitlab/lfs/check.rake
@@ -0,0 +1,8 @@
+namespace :gitlab do
+ namespace :lfs do
+ desc 'GitLab | LFS | Check integrity of uploaded LFS objects'
+ task check: :environment do
+ Gitlab::Verify::RakeTask.run!(Gitlab::Verify::LfsObjects)
+ end
+ end
+end