blob: df6e0cdfa0231f26fa350ed1c442085bb2366633 (
plain)
1
2
3
4
5
6
7
8
9
|
---
# Installs tesseract training files
- name: Get trainings repo
git: dest=/home/{{ ansible_user }}/trainings repo=https://git.rescribe.xyz/trainings
become: no
- name: Copy trainings
shell: cp /home/{{ ansible_user }}/trainings/* /usr/local/share/tesseract-ocr/tessdata
|