Add a validate example to blockinfile. (#32088)

This commit is contained in:
otteydw 2017-10-25 10:11:49 -04:00 committed by John R Barker
parent 0e36854213
commit d2cb676c4c

View file

@ -117,11 +117,12 @@ EXAMPLES = r"""
address 192.0.2.23
netmask 255.255.255.0
- name: insert/update configuration using a local file
- name: insert/update configuration using a local file and validate it
blockinfile:
block: "{{ lookup('file', './local/ssh_config') }}"
dest: "/etc/ssh/ssh_config"
backup: yes
validate: "/usr/sbin/sshd -T -f %s"
- name: insert/update HTML surrounded by custom markers after <body> line
blockinfile: