From 1b2d359a69c930eec00ae4908456580f85b171d1 Mon Sep 17 00:00:00 2001 From: Aleksey Ovcharenko Date: Mon, 16 Dec 2013 19:20:02 +0200 Subject: [PATCH] Added version_added --- files/synchronize | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/synchronize b/files/synchronize index ab02bd85cff..eacebe6da3a 100644 --- a/files/synchronize +++ b/files/synchronize @@ -21,7 +21,7 @@ import subprocess DOCUMENTATION = ''' --- module: synchronize -version_added: "1.4" +version_added: "1.5" short_description: Uses rsync to make synchronizing file paths in your playbooks quick and easy. description: - This is a wrapper around rsync. Of course you could just use the command action to call rsync yourself, but you also have to add a fair number of boilerplate options and host facts. You still may need to call rsync directly via C(command) or C(shell) depending on your use case. The synchronize action is meant to do common things with C(rsync) easily. It does not provide access to the full power of rsync, but does make most invocations easier to follow. @@ -52,6 +52,7 @@ options: choices: [ 'yes', 'no' ] default: 'no' required: false + version_added: "1.5" delete: description: - Delete files that don't exist (after transfer, not before) in the C(src) path.