summaryrefslogtreecommitdiff
path: root/roles/tesseractor/tasks/usefulbits.yml
blob: a0e5f54cd024c3eae2487c12329fd6869ed1ead1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: Install useful dependencies
  apt:
    state: present
    name:
      - git

- name: Clone useful repositories
  git:
    repo: "{{ item.url }}"
    dest: "/home/{{ ansible_user }}/{{ item.name }}"
  become: no
  with_items:
    - { url: "https://git.rescribe.xyz/sh", name: "sh" }
    - { url: "https://git.rescribe.xyz/ground-truth", name: "ground-truth" }