summaryrefslogtreecommitdiff
path: root/lib/system_check/rake_task/gitlab_shell_task.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system_check/rake_task/gitlab_shell_task.rb')
-rw-r--r--lib/system_check/rake_task/gitlab_shell_task.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/system_check/rake_task/gitlab_shell_task.rb b/lib/system_check/rake_task/gitlab_shell_task.rb
new file mode 100644
index 00000000000..120e984c68b
--- /dev/null
+++ b/lib/system_check/rake_task/gitlab_shell_task.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+module SystemCheck
+ module RakeTask
+ # Used by gitlab:gitlab_shell:check rake task
+ class GitlabShellTask
+ extend RakeTaskHelpers
+
+ def self.name
+ 'GitLab Shell'
+ end
+
+ def self.checks
+ [SystemCheck::GitlabShellCheck]
+ end
+ end
+ end
+end