always do go install
- need to figure out how to fix go install
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
# vim: set filetype=yaml.ansible :
|
||||
---
|
||||
- name: Check if go is already installed
|
||||
ansible.builtin.stat:
|
||||
path: "{{ path.go }}/VERSION"
|
||||
register: stat_path_go
|
||||
|
||||
- name: Check version of installed go
|
||||
when:
|
||||
- stat_path_go.stat.exists
|
||||
ansible.builtin.set_fact:
|
||||
do_go_install: "{{ not (go.vers in lookup('ansible.builtin.file', path.go ~ '/VERSION')) }}"
|
||||
# - name: Check if go is already installed
|
||||
# ansible.builtin.stat:
|
||||
# path: "{{ path.go }}/VERSION"
|
||||
# register: stat_path_go
|
||||
#
|
||||
# - name: Check version of installed go
|
||||
# when:
|
||||
# - stat_path_go.stat.exists
|
||||
# ansible.builtin.set_fact:
|
||||
# do_go_install: "{{ not (go.vers in lookup('ansible.builtin.file', path.go ~ '/VERSION')) }}"
|
||||
|
||||
- name: Install/update go
|
||||
when:
|
||||
- (do_go_install is defined and do_go_install) or
|
||||
not stat_path_go.stat.exists
|
||||
# when:
|
||||
# - (do_go_install is defined and do_go_install) or
|
||||
# not stat_path_go.stat.exists
|
||||
block:
|
||||
- name: Download go archive
|
||||
register: get_url_go
|
||||
|
||||
Reference in New Issue
Block a user