mirror of https://github.com/ceph/ceph-ansible.git
ceph-common: install nfs-ganesha FSALs on Debian
Prior to this change, ceph-ansible would install the main NFS Ganesha server daemon on Ubuntu, but it would skip the Ceph FSALs. Running "apt-get install nfs-ganesha" will only install the main NFS Ganesha server. It does *not* pull in the RGW FSAL (/usr/lib/x86_64-linux-gnu/ganesha/libfsalrgw.so) Running "apt-get install nfs-ganesha-fsal" will install the RGW FSAL as well as the main NFS Ganesha server package. Signed-off-by: Ken Dreyer <kdreyer@redhat.com>pull/1358/head
parent
8574c161e2
commit
bf57efaf3c
|
@ -53,7 +53,7 @@
|
|||
|
||||
- name: install NFS gateway
|
||||
apt:
|
||||
pkg: nfs-ganesha
|
||||
pkg: nfs-ganesha-fsal
|
||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||
update_cache: yes
|
||||
when: nfs_group_name in group_names
|
||||
|
|
|
@ -87,6 +87,6 @@
|
|||
|
||||
- name: install red hat storage nfs gateway
|
||||
apt:
|
||||
name: nfs-ganesha
|
||||
name: nfs-ganesha-fsal
|
||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||
when: nfs_group_name in group_names
|
||||
|
|
Loading…
Reference in New Issue