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.
19 lines
481 B
19 lines
481 B
---
|
|
|
|
- name: Compose md5 checksum
|
|
set_fact:
|
|
setup_script_checksum: "md5:{{ setup_script_md5_sum }}"
|
|
when: setup_script_md5_sum is defined and setup_script_md5_sum
|
|
|
|
- name: Download docker setup script for desired version
|
|
get_url:
|
|
url: "{{ setup_script_url }}"
|
|
dest: "/tmp/docker-setup.sh"
|
|
checksum: "{{ setup_script_checksum|default(omit) }}"
|
|
mode: 0755
|
|
|
|
- name: Execute docker setup script
|
|
shell: "/tmp/docker-setup.sh"
|
|
tags:
|
|
- skip_ansible_lint
|