Revert "Revert "oran-shell-release: release image for F""
[pti/rtp.git] / meta-starlingx / meta-stx-cloud / recipes-support / puppet / files / puppet-ldap / 0002-puppet-ldap-poky-stx-fix-pkg-name.patch
1 diff -ru a/manifests/params.pp b/manifests/params.pp
2 --- a/manifests/params.pp       2020-03-05 13:55:59.165978792 +0800
3 +++ b/manifests/params.pp       2020-03-05 14:03:14.677990660 +0800
4 @@ -2,7 +2,11 @@
5  class ldap::params {
6    case $::osfamily {
7      'Debian' : {
8 -      $package = ['ldap-utils']
9 +      if $::operatingsystem == 'poky-stx' {
10 +          $package = ['libldap-2.4-slapd', 'libldap-2.4-bin']
11 +      } else {
12 +          $package = ['ldap-utils']
13 +      }
14  
15        $prefix = '/etc/ldap'
16        $owner = 'root'