1
0
Fork 0
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:
Shuang Wang 2018-10-12 10:48:54 +09:00 committed by Toshio Kuratomi
parent 19c0511f57
commit 761f99a4e3

View file

@ -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'''