From: Andrew Schoen Date: Sun, 15 Mar 2015 19:01:44 +0000 (-0500) Subject: Set a high max open files limit X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ea29296fb085e72849ab893caf1dbe2648a85741;p=ceph-cm-ansible.git Set a high max open files limit Signed-off-by: Andrew Schoen --- diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 77614b5d..b69a3592 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -2,6 +2,14 @@ # configure pip to use our mirror - include: pip.yml +- name: Set a high max open files limit + copy: + dest: /etc/security/limits.d/ubuntu.conf + owner: root + group: root + mode: 0755 + content: ubuntu hard nofile 16384 + # configure red hat specific things - include: setup-redhat.yml when: ansible_os_family == 'RedHat'