From 196c0cab47bd99ca9b203d5ea5651b20a8fe6177 Mon Sep 17 00:00:00 2001 From: Stanislaw Bogatkin Date: Thu, 27 Nov 2014 18:36:44 +0300 Subject: [PATCH] Replace glusterfs package to glusterfs-fuse in RedHat-based OS To working properly with GlusterFS backend cinder-volume needs some original libs and utilities from GlusterFS distribution. For RedHat-based OSes that libs provided by glusterfs-fuse package, so I add it to requirements instead of glusterfs. We shouldn't add glusterfs package explicitly and can use only glusterfs-fuse as requirement, cause glusterfs-fuse depends on glusterfs package. Change-Id: I674b6f4cbbc9f33cb9c3cd49852fddcb1e003791 Closes-Bug: #1397010 --- deployment_scripts/puppet/modules/cindergfs/manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment_scripts/puppet/modules/cindergfs/manifests/params.pp b/deployment_scripts/puppet/modules/cindergfs/manifests/params.pp index e962a9b..1a18761 100644 --- a/deployment_scripts/puppet/modules/cindergfs/manifests/params.pp +++ b/deployment_scripts/puppet/modules/cindergfs/manifests/params.pp @@ -9,7 +9,7 @@ class cindergfs::params { $volume_service_name = 'cinder-volume' } elsif($::osfamily == 'RedHat') { - $glusterfs_package_name = 'glusterfs' + $glusterfs_package_name = 'glusterfs-fuse' $package_name = 'openstack-cinder' $volume_service_name = 'openstack-cinder-volume'