1
0
Fork 0
mirror of https://github.com/mdlayher/homelab.git synced 2024-12-14 11:47:32 +00:00

golang: remove existing installations before installing again

This commit is contained in:
Matt Layher 2016-04-16 01:39:54 -04:00
parent d6013e9d41
commit 2175fd76cc
No known key found for this signature in database
GPG key ID: 77BFE531397EDE94

View file

@ -5,6 +5,9 @@
- name: install mercurial
apt: pkg=mercurial state=installed
- name: remove any existing go installations
file: path={{ golang_root }} state=absent
- name: download and checksum go tarball
get_url: url={{ golang_url }} dest={{ golang_tgz }} checksum=sha256:{{ golang_sha256 }}