Skip to content

Commit 38518cb

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "Add python-ldappool as a requirement for LDAP"
2 parents 2bfe589 + cca5483 commit 38518cb

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

manifests/ldap.pp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@
8484
$assignment_driver = undef,
8585
) {
8686

87-
package { 'python-ldap':
87+
$ldap_packages = ['python-ldap', 'python-ldappool']
88+
package { $ldap_packages:
8889
ensure => present,
8990
}
9091

spec/classes/keystone_ldap_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
}
7777
end
7878
it { should contain_package('python-ldap') }
79+
it { should contain_package('python-ldappool') }
7980
it 'should have basic params' do
8081
should contain_keystone_config('ldap/url').with_value('ldap://foo')
8182
should contain_keystone_config('ldap/user').with_value('cn=foo,dc=example,dc=com')

0 commit comments

Comments
 (0)