meta-starlingx: remove the upstream layer
[pti/rtp.git] / meta-starlingx / meta-stx-cloud / recipes-support / puppet / files / puppet-ceph / 0011-puppet-ceph-changes-for-poky-stx.patch
diff --git a/meta-starlingx/meta-stx-cloud/recipes-support/puppet/files/puppet-ceph/0011-puppet-ceph-changes-for-poky-stx.patch b/meta-starlingx/meta-stx-cloud/recipes-support/puppet/files/puppet-ceph/0011-puppet-ceph-changes-for-poky-stx.patch
deleted file mode 100644 (file)
index 6b7e8a1..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/manifests/params.pp b/manifests/params.pp
-index 2d4d722..4cfb1b4 100644
---- a/manifests/params.pp
-+++ b/manifests/params.pp
-@@ -51,11 +51,16 @@ class ceph::params (
-   case $::osfamily {
-     'Debian': {
--      $pkg_radosgw         = 'radosgw'
-+      if ($::operatingsystem == 'poky-stx') {
-+        $pkg_radosgw         = 'ceph'
-+        $service_provider    = 'systemd'
-+      } else {
-+        $pkg_radosgw         = 'radosgw'
-+        $service_provider    = 'debian'
-+      }
-       $user_radosgw        = 'www-data'
-       $pkg_fastcgi         = 'libapache2-mod-fastcgi'
-       $pkg_nsstools        = ['libnss3-tools', 'wget']
--      $service_provider    = 'debian'
-       $pkg_policycoreutils = 'policycoreutils'
-     }