]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
ceph-nfs: add nfs-ganesha-rados-grace explicitly
authorDimitri Savineau <dsavinea@redhat.com>
Mon, 28 Oct 2019 17:54:16 +0000 (13:54 -0400)
committerDimitri Savineau <savineau.dimitri@gmail.com>
Mon, 28 Oct 2019 20:27:36 +0000 (16:27 -0400)
Since nfs-ganesha V3.0-rc4 and [1] we need to explicitly install the
nfs-ganesha-rados-grace package.

[1] https://github.com/nfs-ganesha/nfs-ganesha/commit/0fea990

Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml

index a08d9c15a5e9da54cdae993881471b5b22a4b9e5..eca66bd81d1ad9374681652789eb32a67c762b59 100644 (file)
@@ -37,7 +37,7 @@
   block:
     - name: install nfs cephfs gateway
       package:
-        name: nfs-ganesha-ceph
+        name: ['nfs-ganesha-ceph', 'nfs-ganesha-rados-grace']
         state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
       register: result
       until: result is succeeded
@@ -45,7 +45,7 @@
 
     - name: install redhat nfs-ganesha-rgw and ceph-radosgw packages
       package:
-        name: ['nfs-ganesha-rgw', 'ceph-radosgw']
+        name: ['nfs-ganesha-rgw', 'nfs-ganesha-rados-grace', 'ceph-radosgw']
         state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
       register: result
       until: result is succeeded