mirror of https://github.com/ceph/ceph-ansible.git
nfs: add missing condition for debian_rhcs
in addition to c4dcdaa20
this commit adds the missing condition on
install tasks for debian_rhcs deployment. Without them, these tasks are
played on any kind of deployment.
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
pull/2015/head
parent
fbd1a57b11
commit
5dc9c640e8
|
@ -134,6 +134,7 @@
|
||||||
name: nfs-ganesha
|
name: nfs-ganesha
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
|
- ansible_os_family == 'Debian'
|
||||||
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|
||||||
- ceph_repository == 'rhcs'
|
- ceph_repository == 'rhcs'
|
||||||
|
|
||||||
|
@ -142,6 +143,7 @@
|
||||||
name: nfs-ganesha-ceph
|
name: nfs-ganesha-ceph
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
|
- ansible_os_family == 'Debian'
|
||||||
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|
||||||
- ceph_repository == 'rhcs'
|
- ceph_repository == 'rhcs'
|
||||||
- nfs_file_gw
|
- nfs_file_gw
|
||||||
|
@ -151,6 +153,7 @@
|
||||||
name: nfs-ganesha-rgw
|
name: nfs-ganesha-rgw
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
|
- ansible_os_family == 'Debian'
|
||||||
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|
||||||
- ceph_repository == 'rhcs'
|
- ceph_repository == 'rhcs'
|
||||||
- nfs_obj_gw
|
- nfs_obj_gw
|
||||||
|
|
Loading…
Reference in New Issue