Sha256: dd208a185ef9aca569e0b59fb674a31ebc3144b9b96eda2a5a3a0a8425983db5
Contents?: true
Size: 773 Bytes
Versions: 27
Compression:
Stored size: 773 Bytes
Contents
require 'yaml' module Gitlab module QA module Scenario module Test module Integration class LDAPNoTLS < LDAP def initialize @gitlab_name = 'gitlab-ldap' @spec_suite = 'Test::Integration::LDAPNoTLS' @tls = false end def configure(gitlab, ldap) gitlab.omnibus_config = <<~OMNIBUS gitlab_rails['ldap_enabled'] = true; gitlab_rails['ldap_servers'] = #{ldap.to_config}; gitlab_rails['ldap_sync_worker_cron'] = '* * * * *'; gitlab_rails['ldap_group_sync_worker_cron'] = '* * * * *'; OMNIBUS end end end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems