You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
344 B
13 lines
344 B
error code
|
|
---
|
|
- name: win_get_url module demo
|
|
hosts: all
|
|
become: false
|
|
vars:
|
|
myurl: "https://releases.ansible.com/ansible/ansible-2.9.25.tar.gz"
|
|
mydest: 'C:\Users\Administrator\Desktop\ansible-2.9.25.tar.gz'
|
|
tasks:
|
|
- name: download file
|
|
ansible.builtin.get_url:
|
|
url: "{{ myurl }}"
|
|
dest: "{{ mydest }}" |