Files
EX407-Ansible-Automation/playbooks/block_playbook.yml
2020-03-04 12:02:36 +01:00

12 lines
281 B
YAML

---
- hosts: labservers
tasks:
- name: get file
block:
- get_url:
url: "http://innaghiyev2c/index.html"
dest: "/tmp/index_file"
rescue:
- debug: msg="The file doesn't exists!"
always:
- debug: msg="Play done!"