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.
14 lines
393 B
14 lines
393 B
---
|
|
- 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\vagrant\Desktop\ansible-2.9.25.tar.gz'
|
|
ansible_shell_type: powershell
|
|
shell_type: powershell
|
|
tasks:
|
|
- name: download file
|
|
ansible.windows.win_get_url:
|
|
url: "{{ myurl }}"
|
|
dest: "{{ mydest }}" |