ceph-nfs: add nfs-ganesha-rados-urls package

Since nfs-ganesha 2.8.3 the rados-urls library has been move to a
dedicated package.
We don't have the same nfs-ganesha 2.8.x between the community and rhcs
repositories.

community: 2.8.1
rhcs: 2.8.3

As a workaround we will install that package only for rhcs setup.

Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit 0a3e85e8ca)
pull/5071/head
Dimitri Savineau 2020-02-06 15:41:46 -05:00 committed by Dimitri Savineau
parent 6864d04fdf
commit b01b255414
1 changed files with 10 additions and 0 deletions

View File

@ -50,3 +50,13 @@
register: result
until: result is succeeded
when: nfs_obj_gw | bool
- name: install nfs-ganesha-rados-urls
package:
name: nfs-ganesha-rados-urls
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
register: result
until: result is succeeded
when:
- nfs_obj_gw | bool
- ceph_repository == 'rhcs'