Skip to content

Instantly share code, notes, and snippets.

@nleiva
Created July 1, 2021 14:03
Show Gist options
  • Save nleiva/dfa5b2a76795fd8075fe60f522cd140b to your computer and use it in GitHub Desktop.
Save nleiva/dfa5b2a76795fd8075fe60f522cd140b to your computer and use it in GitHub Desktop.
- name: Download Go
ansible.builtin.get_url:
url: "{{ go_download_url }}"
dest: "/tmp/go{{ go_version }}.tar.gz"
mode: '0644'
- name: Unarchive Go
ansible.builtin.unarchive:
src: "/tmp/go{{ go_version }}.tar.gz"
dest: "/usr/local"
remote_src: yes
mode: '0755'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment