Commit befdb8f6 by Maruyama Takayuki

roles/go: partial fix for ansible/ansible-modules-core issue 2936

parent ddc8fa39
--- ---
- name: download and extract #- name: download and extract
unarchive: # unarchive:
src: https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz # src: https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz
dest: /usr/local # dest: /usr/local
copy: no # copy: no
- name: download
get_url:
url: https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz
dest: /tmp/go.tar.gz
- name: extract
command: /bin/tar xvf /tmp/go.tar.gz -C /usr/local
become: yes
- name: make symlink go - name: make symlink go
file: file:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment