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
Ken Dreyer 2017-03-13 09:34:35 -06:00
parent 8574c161e2
commit bf57efaf3c
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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