From 3b934016c00a102262539386ff3ec0a9d01af40e Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sat, 12 Dec 2015 17:16:47 -0500 Subject: [PATCH] note that create globs only work on 2.0 fixes #2666 --- lib/ansible/modules/commands/command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/commands/command.py b/lib/ansible/modules/commands/command.py index 85b3f2a492b..fd2cf12018c 100644 --- a/lib/ansible/modules/commands/command.py +++ b/lib/ansible/modules/commands/command.py @@ -49,12 +49,12 @@ options: aliases: [] creates: description: - - a filename or glob pattern, when it already exists, this step will B(not) be run. + - a filename or (since 2.0) glob pattern, when it already exists, this step will B(not) be run. required: no default: null removes: description: - - a filename or glob pattern, when it does not exist, this step will B(not) be run. + - a filename or (since 2.0) glob pattern, when it does not exist, this step will B(not) be run. version_added: "0.8" required: no default: null