summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/files/find.py
Commit message (Collapse)AuthorAgeFilesLines
* fixed RETURN docs for modules (#24011)Andrea Tartaglia2017-04-261-1/+1
| | | | | | | | * fixed RETURN docs for remaining modules * updated proxymysql_mysql_users 'sample' to yaml dict * fixed whitespace errors
* New metadata 1.0 (#22587)Toshio Kuratomi2017-03-141-3/+4
| | | | | | | | | | | | | | | | Changes to the metadata format were approved here: https://github.com/ansible/proposals/issues/54 * Update documentation to the new metadata format * Changes to metadata-tool to account for new metadata * Add GPL license header * Add upgrade subcommand to upgrade metadata version * Change default metadata to the new format * Fix exclusion of non-modules from the metadata report * Fix ansible-doc for new module metadata * Exclude metadata version from ansible-doc output * Fix website docs generation for the new metadata * Update metadata schema in valiate-modules test * Update the metadata in all modules to the new version
* Fix incorrect wording in the 'find' module 'paths' parameterTim Bielawa2017-02-101-1/+1
|
* Update validate-modules (#20932)Matt Martz2017-02-021-7/+7
| | | | | | | | | | | | | | * Update validate-modules * Validates ANSIBLE_METADATA * Ensures imports happen after documentation vars * Some pep8 cleanup * Clean up some left over unneeded code * Update modules for new module guidelines and validate-modules checks * Update imports for ec2_vpc_route_table and ec2_vpc_nat_gateway
* PEP 8 E111 & E114 cleanup. (#20838)Matt Clay2017-01-301-10/+10
|
* PEP 8 cleanup. (#20789)Matt Clay2017-01-281-1/+2
| | | | | | | * PEP 8 E703 cleanup. * PEP 8 E701 cleanup. * PEP 8 E711 cleanup. * PEP 8 W191 and E101 cleanup.
* PEP 8 W291 whitespace cleanup.Matt Clay2017-01-271-1/+1
|
* Fix code-blocks to use correct syntax highlightingToshio Kuratomi2017-01-081-2/+4
|
* allow modules to set custom stats (#18946)Brian Coca2017-01-051-0/+1
| | | | | | | can be per run or per host, also aggregate or not set_stats action plugin as reference implementation added doc stub display stats in calblack made custom stats showing configurable
* Refreshed metadata for core modulesToshio Kuratomi2016-12-081-0/+4
|
* Call main in conditional way - files (#5828)Fabio Alessandro Locati2016-12-081-1/+2
|
* fix yaml format, clarify docsBrian Coca2016-12-081-1/+1
|
* updated descBrian Coca2016-12-081-0/+1
|
* Be able to find all contents of a directory (#3711)Orion Poplawski2016-12-081-3/+7
|
* Add 'link' file_type to find_moduleDavid Wittman2016-12-081-3/+8
| | | | | | - Adds the 'link' file_type for finding symbolic or hard links - Use `os.lstat` instead of `os.stat` to prevent the following of links when statting the file.
* Change examples syntax on find moduleSam Doran2016-12-081-5/+23
|
* Make find return sample a YAML dictbencomp2016-12-081-7/+7
| | | | | | | | | In the description of the find module return value, the sample dict has its key=value strings converted to key=value: None in the web documentation. This commit updates the sample output to a 'real' dict. Minor additional edit in the description: "return list *of* files".
* Bulk spelling improvement to modules-core (#5225)John R Barker2016-12-081-1/+1
| | | | | | | | | | * Correct spelling mistakes * Correct more spelling issues * merge conflict * Revert typo in parms
* find.py: Editing contains description to say regex (#4452)Chris Short2016-12-081-1/+1
| | | | find module contains argument appears to accept regex; correcting description accordingly
* removed 'overquoting' of exampleBrian Coca2016-12-081-1/+1
| | | | fixes #3029
* since find doesn't make changes, support check mode and gather data for ↵Brian Coca2016-12-081-0/+1
| | | | other tasks in check mode
* final form, use_regex now controls if patterns is glob or regex - fixed ↵Brian Coca2016-12-081-24/+33
| | | | cases in which stat fails (dangling symlink) - now properly reports name of skipped paths
* changed so regexes and shell globs work transparentlyBrian Coca2016-12-081-8/+19
|
* fixed bug in specBrian Coca2016-12-081-1/+1
|
* added regex support to find, also added 'singular' aliasess to patterns and ↵Brian Coca2016-12-081-11/+15
| | | | paths
* Add the ability to grep for contentRitesh Khadgaray2016-12-081-3/+29
|
* find module updated to be able to get checksums and stat data, also now it ↵Brian Coca2016-12-081-0/+299
only stats a file once so it should be quite faster on large file sets