2018-04-26 08:55:53 +00:00
|
|
|
require_dependency 'ldap'
|
2017-11-29 16:54:52 +00:00
|
|
|
|
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Ldap
|
2017-12-20 15:08:37 +00:00
|
|
|
class Connection < Sequencer::Unit::Common::Provider::Fallback
|
|
|
|
|
2017-11-29 16:54:52 +00:00
|
|
|
uses :ldap_config
|
|
|
|
provides :ldap_connection
|
|
|
|
|
2017-11-30 12:44:41 +00:00
|
|
|
private
|
2017-11-29 16:54:52 +00:00
|
|
|
|
2017-12-20 15:08:37 +00:00
|
|
|
def ldap_connection
|
2017-11-30 12:44:41 +00:00
|
|
|
::Ldap.new(ldap_config)
|
2017-11-29 16:54:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|