Sha256: 6b6c2fa759f20389748988b41019000be848deccfaf5756152be98545d9f321e

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

#
# Cookbook Name:: openldap
# Recipe:: slave
#
# Copyright 2012, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

node.default['openldap']['slapd_type'] = 'slave'

if Chef::Config[:solo]
  Chef::Log.warn("To use #{cookbook_name}::#{recipe_name} with solo, set attributes node['openldap']['slapd_replpw'] and node['openldap']['slapd_master'].")
else
  ::Chef::Recipe.send(:include, Opscode::OpenSSL::Password)
  node.default['openldap']['slapd_replpw'] = secure_password
  node.default['openldap']['slapd_master'] = search(:nodes, 'openldap_slapd_type:master').map {|n| n['openldap']['server']}.first
  node.save
end

include_recipe "openldap::server"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
infrataster-plugin-ldap-0.0.1 spec/cookbooks/openldap/recipes/slave.rb