From 04ecae0cc6ddff61982a737ea414ffca2e8cd1cd Mon Sep 17 00:00:00 2001 From: Deimosfr Date: Fri, 26 Jun 2015 18:56:32 +0200 Subject: [PATCH] Adding numactl package More and more physical servers are running on numa infrastructure. To get best performances, numactl is required. --- tasks/install.deb.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tasks/install.deb.yml b/tasks/install.deb.yml index 32fea68..f846a22 100644 --- a/tasks/install.deb.yml +++ b/tasks/install.deb.yml @@ -28,7 +28,10 @@ when: '"mongodb-org" in mongodb_package' - name: Install MongoDB package - apt: pkg={{mongodb_package}} state=present + apt: name={{item}} state=present + with_items: + - "{{mongodb_package}}" + - numactl - name: reload systemd shell: systemctl daemon-reload