mirror of https://github.com/ceph/ceph-ansible.git
adds missing state needed to upgrade nfs-ganesha
in tasks for os_family Red Hat we were missing this fixes: bz1575859 Signed-off-by: Gregory Meno <gmeno@redhat.com>pull/2574/head
parent
259fae931d
commit
26f6a65042
|
@ -90,6 +90,7 @@
|
||||||
- name: install nfs cephfs gateway
|
- name: install nfs cephfs gateway
|
||||||
package:
|
package:
|
||||||
name: nfs-ganesha-ceph
|
name: nfs-ganesha-ceph
|
||||||
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
- nfs_file_gw
|
- nfs_file_gw
|
||||||
- ansible_os_family == 'RedHat'
|
- ansible_os_family == 'RedHat'
|
||||||
|
@ -97,6 +98,7 @@
|
||||||
- name: install redhat nfs-ganesha-rgw and ceph-radosgw packages
|
- name: install redhat nfs-ganesha-rgw and ceph-radosgw packages
|
||||||
package:
|
package:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
with_items:
|
with_items:
|
||||||
- nfs-ganesha-rgw
|
- nfs-ganesha-rgw
|
||||||
- ceph-radosgw
|
- ceph-radosgw
|
||||||
|
|
Loading…
Reference in New Issue