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