Ansible Module find: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:


=Internal=
=Internal=
* [[Ansible Concepts]]
* [[Ansible_Concepts#Often-Used_Modules|Ansible Concepts]]
 
=Overview=
=Overview=
Return a list of files based on specific criteria. Multiple criteria are ANDed together.
Return a list of files based on specific criteria. Multiple criteria are ANDed together.

Revision as of 04:53, 2 July 2021

External

Internal

Overview

Return a list of files based on specific criteria. Multiple criteria are ANDed together.

Example

- name: Find JetBrains applications
  find:
    paths: "{{ ansible_env.HOME }}/Library/Application Support/JetBrains/Toolbox/apps"
    recurse: yes
    patterns: '.history.json'
    hidden: yes
    file_type: file
    depth: 5
  register: intellij_apps