14 lines
294 B
YAML
14 lines
294 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Install from archive
|
|
when:
|
|
- go.use_archive
|
|
ansible.builtin.set_fact:
|
|
pkg_archive: "{{ pkg_archive + ['go'] }}"
|
|
|
|
- name: Append to pkgs
|
|
when:
|
|
- not go.use_archive
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + ['go'] }}"
|