Skip to content

Commit

Permalink
fix(proxy): Install git to clone sshpiper repo
Browse files Browse the repository at this point in the history
  • Loading branch information
eesaanatluri committed Oct 5, 2024
1 parent ec895c6 commit 73937fc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions roles/sshpiper/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
policy: targeted
state: permissive

- name: Install gcc to build sshpiper against it
- name: Install prerequisite pkgs
ansible.builtin.yum:
name: gcc
name: "{{ item }}"
state: present
loop:
- git
- gcc

- name: Download Go
get_url:
Expand Down

0 comments on commit 73937fc

Please sign in to comment.