From 8f07bbc671902a8e9a6fed05b15283f136ecbedf Mon Sep 17 00:00:00 2001 From: saibotk Date: Fri, 5 Mar 2021 14:26:59 +0100 Subject: [PATCH] Config: Add roles path to ansible.cfg explicitly This is needed, when using an extra folder for playbooks, so Ansible can still find all roles. --- ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index c31720e..78f8d0c 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,5 +1,5 @@ [defaults] -roles_path = ~/.ansible/roles +roles_path = ./roles:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles inventory = ./inventory retry_files_enabled = false vault_password_file = .vault_pass