From 1ce6d7def952961885504f450a021785ddbb1407 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 23 Jun 2017 15:55:45 -0600 Subject: [PATCH] ansible: Use up to 50 forks This speeds up deployment. Ansible will use this value or the number of hosts - whichever is smaller. Signed-off-by: Zack Cerza --- ansible/ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 40d9289..9c3ef13 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -1,3 +1,4 @@ [defaults] roles_path: ./roles/ host_key_checking: False +forks: 50 -- 2.47.3