]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
add installation of jemalloc for nfs-ganesha
authorOrFriedmann <fridifree@gmail.com>
Wed, 5 Oct 2016 13:07:25 +0000 (16:07 +0300)
committerGitHub <noreply@github.com>
Wed, 5 Oct 2016 13:07:25 +0000 (16:07 +0300)
roles/ceph-common/tasks/installs/install_on_debian.yml

index 63e75393ea7732d31cf2fff75463556e92d4e394..3a38271c89bf341531f93d04eb6d839155243ba2 100644 (file)
     default_release: "{{ ceph_stable_release_uca | default(ansible_distribution_release) }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}"
   when: mds_group_name in group_names
 
-- name: install NFS gateway
+- name: install jemalloc
   apt:
+    pkg: libjemalloc1
+    state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
+    update_cache: yes
+  when: nfs_group_name in group_names
+
+- name: install jemalloc
+  apt:
+    pkg: libjemalloc1
+    state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
+    update_cache: yes
+  when: nfs_group_name in group_names
+
+- name: install NFS gateway  apt:
     pkg: nfs-ganesha
     state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
     update_cache: yes