mirror of https://github.com/ceph/ceph-ansible.git
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
parent
6864d04fdf
commit
b01b255414
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue