diff options
author | heqnx <root@heqnx.com> | 2025-05-23 13:37:32 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-05-23 13:37:32 +0300 |
commit | 356adb1e7924274a25c3b1ec48cc2a6d07f56cc4 (patch) | |
tree | cb23e4990a9a118319c8636f1ac6c8714cf5ee0f /attackbox/tasks/go_tools.yaml | |
parent | 72756cce5ea85f43c7fa80f1f128bbbe7f1a4309 (diff) | |
download | ansible-playbooks-356adb1e7924274a25c3b1ec48cc2a6d07f56cc4.tar.gz ansible-playbooks-356adb1e7924274a25c3b1ec48cc2a6d07f56cc4.zip |
added attackbox ansible setup
Diffstat (limited to 'attackbox/tasks/go_tools.yaml')
-rw-r--r-- | attackbox/tasks/go_tools.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/attackbox/tasks/go_tools.yaml b/attackbox/tasks/go_tools.yaml new file mode 100644 index 0000000..18c0346 --- /dev/null +++ b/attackbox/tasks/go_tools.yaml @@ -0,0 +1,6 @@ +- name: install go tools + ansible.builtin.command: + cmd: "/usr/local/go/bin/go install -trimpath -v {{ item }}" + environment: + GOBIN: /usr/local/bin + loop: "{{ go_tools }}" |