Keisuke Kamada
74864c2d85
Do not copy file if running on check mode
9 years ago
Michael Scherer
69ea617093
Convert the whole files/ directory to py3 syntax ( #3685 )
9 years ago
Brian Coca
a268e5a119
Merge pull request #2647 from bertvv/issue_2498
...
Also show stdout when validation fails. This fixes #2498
9 years ago
Brian Coca
8c2ef29a7a
added follow to specific modules that support it
...
was removed from common file docs
9 years ago
Brian Coca
191bf977f7
Merge pull request #3042 from lgp171188/patch-1
...
Fix typo in the copy module error message
9 years ago
Brian Coca
238c26c7e2
recursive copy is not available(yet) on remote_src
9 years ago
Guruprasad
ea6c2573e3
Fix typo in the copy module error message
...
Fix the typos in the error message shown on trying to use remote_src=yes for copying directories
9 years ago
Brian Coca
b89f4c7cab
cleaner error on recursive remote copy
...
TODO: add recursive copy support when remote_src=yes
probably need to make shared the logic in the action plugin.
9 years ago
Michael Scherer
948900f7fb
Fix doc inconsistency ( #2630 )
9 years ago
Adam Fields
27f561dca2
added a reference to the template module for clarity
9 years ago
Bert Van Vreckem
9556bcb9c2
Also show stdout when validation fails. This fixes #2498
9 years ago
Maarten Claes
e9c548da41
This fixes copy with the remote_src option
...
It was broken in 6e37f1dcef
when the remote_src was added. Need to
pass the absolute path to copy2 instead of a tuple.
9 years ago
Brian Coca
6e37f1dcef
fixed remote_src support, now actually copies and does not move
9 years ago
Brian Coca
5893eb51a5
documented new remote_src option
9 years ago
Marius Gedminas
9bcf69a155
Fix obvious copy-paste error in module docs
9 years ago
James Cammarata
2bfddb015d
In copy, set the mode before running th validation
...
Because some programs that do validation (like visudo) may require
the permissions to be more restricted.
Fixes ansible/ansible#11385
9 years ago
Brian Coca
c688408385
fixed fragment docs
9 years ago
Jeff Widman
fd6518179b
Move validate command into doc fragment and fix a few typos
9 years ago
Greg DeKoenigsberg
2a5f0bde87
Proper author info for all remaining modules
10 years ago
Brian Coca
a597992592
updated content description to discourage using as a tempalte module
10 years ago
Brian Coca
de4c7f8ba6
switched to use python's built in os.separator vs using /
10 years ago
Brian Coca
7683f36613
fix to return vals docs
10 years ago
Brian Coca
13cdadcc4d
removed always for success, as data wont show on fail
10 years ago
Brian Coca
cbf42c95b2
draft for documenting module returns
10 years ago
Toshio Kuratomi
9e0959d600
Fix for recursion traceback in copy with relative paths
...
This is a further fix for: https://github.com/ansible/ansible/issues/9092
when the relative path contains a subdirectory. Like:
ansible localhost -m copy -a 'src=/etc/group dest=foo/bar/'
10 years ago
Brian Coca
242a1562c3
Merge pull request #36 from mscherer/fix_old_9092
...
Fix old ticket #9092 where a playbook can enter in recursion
10 years ago
Jeff Geerling
b9471c9cd5
Add mention of fetch module to the copy module docs.
10 years ago
Toshio Kuratomi
6317d3a988
Move from md5 to sha1 to work on FIPS-140 enabled systems
10 years ago
Michael Scherer
9cbd4d0fad
Fix old ticket #9092 where a playbook can enter in recursion
...
This can be tested with this command :
ansible -c local -m copy -a 'src=/etc/group dest=foo/' all
This is a corner case of the algorithm used to find how we should
copy recursively a folder, and this commit detect it and avoid it.
Check https://github.com/ansible/ansible/issues/9092 for the story
10 years ago
Michael DeHaan
c8e1a2077e
file extensions!
10 years ago