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

- 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" }