From 8d0d251003809b89f844c0a25020432368c57223 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 12 Feb 2016 13:23:36 -0500 Subject: [PATCH] removed 'overquoting' of example fixes #3029 --- lib/ansible/modules/files/find.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/files/find.py b/lib/ansible/modules/files/find.py index d6d1d42c4f..7d7d4ab03a 100644 --- a/lib/ansible/modules/files/find.py +++ b/lib/ansible/modules/files/find.py @@ -127,7 +127,7 @@ EXAMPLES = ''' - find: paths="/var/tmp" age="3600" age_stamp=atime recurse=yes # find /var/log files equal or greater than 10 megabytes ending with .old or .log.gz -- find: paths="/var/tmp" patterns="'*.old','*.log.gz'" size="10m" +- find: paths="/var/tmp" patterns="*.old,*.log.gz" size="10m" # find /var/log files equal or greater than 10 megabytes ending with .old or .log.gz via regex - find: paths="/var/tmp" patterns="^.*?\.(?:old|log\.gz)$" size="10m" use_regex=True