]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
ceph-common: install nfs-ganesha FSALs on Debian 1358/head
authorKen Dreyer <kdreyer@redhat.com>
Mon, 13 Mar 2017 15:34:35 +0000 (09:34 -0600)
committerKen Dreyer <kdreyer@redhat.com>
Tue, 14 Mar 2017 14:37:45 +0000 (08:37 -0600)
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>
roles/ceph-common/tasks/installs/install_on_debian.yml
roles/ceph-common/tasks/installs/install_rh_storage_on_debian.yml

index 0f8648216be9f00481a43acf48be1af74319c352..c6ab701ac69a476d1e2c46d16d8c37a7f56649d7 100644 (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
index 26a0c1825e28b9e0767bdbdcc176964b07f34371..1551638f397accf4f61cbbbb94416d6ac63a744d 100644 (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