blob: 38cb7424f05541ed5358b92ef33d048bd18e803c (
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
- python3-pil.imagetk
- 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" }
|