Skip to content
Snippets Groups Projects
Commit 7c7d35ed authored by jurgenhaas's avatar jurgenhaas
Browse files

#11 Add tesseract and OCR plugin

parent fdddb6c5
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ nextcloud_plugins:
- 'files_automatedtagging'
- 'files_downloadactivity'
- 'files_fulltextsearch'
- 'files_fulltextsearch_tesseract'
- 'files_readmemd'
- 'files_rightclick'
- 'flowupload'
......
......@@ -88,4 +88,7 @@
- name: "Install TURN server"
include_tasks: turn.yml
- name: "Install tesseract"
include_tasks: tesseract.yml
when: '"nextcloud" not in excluded_roles'
---
# file: roles/nextcloud/tasks/tesseract.yml
- name: "Ensure packages"
apt:
pkg: '{{ packages }}'
state: 'present'
update_cache: yes
vars:
packages:
- 'tesseract-ocr'
- 'tesseract-ocr-eng'
- 'tesseract-ocr-deu'
- 'libtesseract-dev'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment