From a57217ae8823547b7d2122b7bef8c680b53958b7 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 1 Apr 2020 16:25:43 +0200
Subject: [PATCH] Add support for optional extra arguments during find when
 colecting config

---
 tasks/collect_config/collect.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tasks/collect_config/collect.yml b/tasks/collect_config/collect.yml
index 449f9b7..164fddf 100644
--- a/tasks/collect_config/collect.yml
+++ b/tasks/collect_config/collect.yml
@@ -17,7 +17,7 @@
       state: directory
 
   - name: Read file name in working copy
-    shell: find . -type f
+    shell: find . {{ collectConfig.findExtraArguments|default('') }} -type f
     args:
       chdir: '{{ pathWorking }}'
     register: list_config_files
-- 
GitLab