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