9 lines
330 B
YAML
9 lines
330 B
YAML
- hosts: testhost
|
|
tasks:
|
|
- name: download binary module
|
|
tags: test_binary_modules
|
|
get_url:
|
|
url: "https://ansible-ci-files.s3.amazonaws.com/test/integration/roles/test_binary_modules/{{ filename }}"
|
|
dest: "{{ playbook_dir }}/library/{{ filename }}"
|
|
mode: 0755
|
|
delegate_to: localhost
|