This commit is contained in:
user
2023-11-07 05:55:30 -06:00
parent fd374e6322
commit fb4515a9af
2 changed files with 9 additions and 8 deletions

View File

@@ -6,4 +6,5 @@
- "vars/defaults.yml"
- name:
include_tasks: "{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml"
#include_tasks: "{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml"
include_tasks: "defaults.yml"

View File

@@ -3,12 +3,12 @@
ignore_errors: yes
register: Go_Installed
- name: Install Go
when: Go_Installed.stdout != go_verison
ansible.builtin.unarchive:
src: "https://go.dev/dl/{{ go_verison }}.linux-amd64.tar.gz"
dest: "/usr/local"
remote_src: yes
#- name: Install Go
# when: Go_Installed.stdout != go_verison
# ansible.builtin.unarchive:
# src: "https://go.dev/dl/{{ go_verison }}.linux-amd64.tar.gz"
# dest: "/usr/local"
# remote_src: yes
- name: Install Go Modules
become_user: user
@@ -21,7 +21,7 @@
- "github.com/go-delve/delve/cmd/dlv@latest"
- "github.com/sentiens/goptest@latest"
- "github.com/josharian/impl@latest"
- "github.com/jesseduffield/lazygit@latest"