meta-starlingx: remove the upstream layer
[pti/rtp.git] / meta-starlingx / meta-stx-cloud / recipes-support / puppet / files / puppet-ldap / 0002-puppet-ldap-poky-stx-fix-pkg-name.patch
diff --git a/meta-starlingx/meta-stx-cloud/recipes-support/puppet/files/puppet-ldap/0002-puppet-ldap-poky-stx-fix-pkg-name.patch b/meta-starlingx/meta-stx-cloud/recipes-support/puppet/files/puppet-ldap/0002-puppet-ldap-poky-stx-fix-pkg-name.patch
deleted file mode 100644 (file)
index 14ff8d3..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -ru a/manifests/params.pp b/manifests/params.pp
---- a/manifests/params.pp      2020-03-05 13:55:59.165978792 +0800
-+++ b/manifests/params.pp      2020-03-05 14:03:14.677990660 +0800
-@@ -2,7 +2,11 @@
- class ldap::params {
-   case $::osfamily {
-     'Debian' : {
--      $package = ['ldap-utils']
-+      if $::operatingsystem == 'poky-stx' {
-+          $package = ['libldap-2.4-slapd', 'libldap-2.4-bin']
-+      } else {
-+          $package = ['ldap-utils']
-+      }
-       $prefix = '/etc/ldap'
-       $owner = 'root'