aboutsummaryrefslogtreecommitdiff
path: root/old/attackbox/tasks/github_repos.yaml
diff options
context:
space:
mode:
authorheqnx <root@heqnx.com>2025-05-25 20:42:06 +0300
committerheqnx <root@heqnx.com>2025-05-25 20:42:06 +0300
commit419478997ce7d61d56ffbfb0d0148784b1e7727c (patch)
treea1f3d94cb7fe4afe45a0ef523ed07b91a7be9b95 /old/attackbox/tasks/github_repos.yaml
parent4929a0915888290faaac4f9ae972091c6b383b90 (diff)
downloadansible-playbooks-419478997ce7d61d56ffbfb0d0148784b1e7727c.tar.gz
ansible-playbooks-419478997ce7d61d56ffbfb0d0148784b1e7727c.zip
removing old dir
Diffstat (limited to 'old/attackbox/tasks/github_repos.yaml')
-rw-r--r--old/attackbox/tasks/github_repos.yaml15
1 files changed, 0 insertions, 15 deletions
diff --git a/old/attackbox/tasks/github_repos.yaml b/old/attackbox/tasks/github_repos.yaml
deleted file mode 100644
index 042ea6c..0000000
--- a/old/attackbox/tasks/github_repos.yaml
+++ /dev/null
@@ -1,15 +0,0 @@
-- name: ensure /opt/tools exists
- ansible.builtin.file:
- path: /opt/tools
- state: directory
- owner: root
- group: root
- mode: '0755'
-
-- name: clone github repos into /opt/tools
- ansible.builtin.git:
- repo: "{{ item }}"
- dest: "/opt/tools/{{ item | basename | regex_replace('\\.git$', '') }}"
- update: yes
- force: yes
- loop: "{{ github_repos }}"