From: Dimitri Savineau Date: Mon, 28 Oct 2019 17:54:16 +0000 (-0400) Subject: ceph-nfs: add nfs-ganesha-rados-grace explicitly X-Git-Tag: v5.0.0alpha1~8 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=15f7c7195aab7b4c60a6e7cc51ea9d31fb92d7ed;p=ceph-ansible.git ceph-nfs: add nfs-ganesha-rados-grace explicitly 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 --- diff --git a/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml b/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml index a08d9c15a..eca66bd81 100644 --- a/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml +++ b/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml @@ -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