From ed5d539e83bef7a0d60dcfff316081953087b026 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20Ospal=C3=BD?= Date: Wed, 19 Dec 2018 14:41:38 +0100 Subject: [PATCH] Add an ansible config to enable custom roles MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Inside the application directory can be defined a custom application specific role Issue-ID: OOM-1551 Change-Id: Ic975a477fa33452f061a88c133a0e3edae747d94 Signed-off-by: Petr Ospalý --- ansible/ansible.cfg | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ansible/ansible.cfg diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg new file mode 100644 index 00000000..c2ee3ff3 --- /dev/null +++ b/ansible/ansible.cfg @@ -0,0 +1,8 @@ +[defaults] + +# Define any custom roles used by applications installed by installer +# this parameter is telling ansible what additional folder it should +# browse while looking up for roles code +# relative path ./application is mapped into ansible container under +# /ansible/application where application roles should be found +roles_path = /ansible/application -- 2.16.6