diff options
author | Matt Clay <matt@mystile.com> | 2016-12-08 09:38:05 -0500 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2014-09-26 01:01:01 +0000 |
commit | 5458361331775f06303c73c1c18e377525fc551e (patch) | |
tree | 63f0ec4cf6c08628019caa22715d157dc2ef7351 /lib/ansible/modules/files/file.py | |
parent | ad001c2cbc3508301155b255fd3a017d130252d9 (diff) | |
download | ansible-test_new_merge.tar.gz |
Fix differences with devel.test_new_merge
Diffstat (limited to 'lib/ansible/modules/files/file.py')
-rw-r--r-- | lib/ansible/modules/files/file.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ansible/modules/files/file.py b/lib/ansible/modules/files/file.py index 558cfc388a..ef98f036e8 100644 --- a/lib/ansible/modules/files/file.py +++ b/lib/ansible/modules/files/file.py @@ -28,7 +28,7 @@ module: file version_added: "historical" short_description: Sets attributes of files extends_documentation_fragment: files -description: +description: - Sets attributes of files, symlinks, and directories, or removes files/symlinks/directories. Many other modules support the same options as the M(file) module - including M(copy), M(template), and M(assemble). @@ -44,7 +44,7 @@ options: - 'path to the file being managed. Aliases: I(dest), I(name)' required: true default: [] - aliases: ['dest', 'name'] + aliases: ['dest', 'name'] state: description: - If C(directory), all immediate subdirectories will be created if they @@ -78,7 +78,7 @@ options: default: "no" choices: [ "yes", "no" ] description: - - 'force the creation of the symlinks in two cases: the source file does + - 'force the creation of the symlinks in two cases: the source file does not exist (but will appear later); the destination exists and is a file (so, we need to unlink the "path" file and create symlink to the "src" file in place of it).' follow: |