Install extra fonts

This commit is contained in:
phil 2024-02-06 08:44:05 +01:00
parent df35a1a2ba
commit 98d4e8ee62
9 changed files with 13 additions and 0 deletions

Binary file not shown.

BIN
files/fonts/MarkOT-Bold.otf Normal file

Binary file not shown.

Binary file not shown.

BIN
files/fonts/MarkOT.otf Normal file

Binary file not shown.

BIN
files/fonts/TisaOT-Bold.otf Normal file

Binary file not shown.

BIN
files/fonts/TisaOT-Ita.otf Normal file

Binary file not shown.

BIN
files/fonts/TisaOT.otf Normal file

Binary file not shown.

8
tasks/fonts.yml Normal file
View file

@ -0,0 +1,8 @@
---
- name: "Fonts | Copy font files"
ansible.builtin.copy:
src: "{{ item }}"
dest: /usr/local/share/fonts
mode: "0644"
with_fileglob:
- "files/fonts/*"

View file

@ -7,3 +7,8 @@
- name: Install packages
ansible.builtin.import_tasks: install.yml
tags: install
- name: Install fonts
ansible.builtin.import_tasks: fonts.yml
tags: fonts
when: onlyoffice_extra_fonts