mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
add sample for follow parameter of copy.py (#45765)
* add sample for follow parameter of copy.py
This commit is contained in:
parent
19c0511f57
commit
761f99a4e3
1 changed files with 12 additions and 0 deletions
|
@ -164,6 +164,18 @@ EXAMPLES = r'''
|
|||
copy:
|
||||
content: '# This file was moved to /etc/other.conf'
|
||||
dest: /etc/mine.conf
|
||||
|
||||
- name: if follow is true, /path/to/file will be overwritten by contents of foo.conf
|
||||
copy:
|
||||
src: /etc/foo.conf
|
||||
dest: /path/to/link # /path/to/link is link to /path/to/file
|
||||
follow: True
|
||||
|
||||
- name: if follow is False, /path/to/link will become a file and be overwritten by contents of foo.conf
|
||||
copy:
|
||||
src: /etc/foo.conf
|
||||
dest: /path/to/link # /path/to/link is link to /path/to/file
|
||||
follow: False
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
|
|
Loading…
Reference in a new issue