mirror of
https://github.com/ansible/ansible.git
synced 2026-07-29 00:37:20 +02:00
10 lines
325 B
YAML
10 lines
325 B
YAML
- hosts: testhost
|
|
tasks:
|
|
- name: download binary module
|
|
tags: test_binary_modules
|
|
get_url:
|
|
url: "https://ci-files.testing.ansible.com/test/integration/roles/test_binary_modules/{{ filename }}"
|
|
dest: "{{ playbook_dir }}/library/{{ filename }}"
|
|
mode: 0755
|
|
delegate_to: localhost
|