Skip to content
Snippets Groups Projects
Commit 3d4be12a authored by Jörg Sachse's avatar Jörg Sachse
Browse files

refactor: move font installation to separate taskfile

parent f5ea4179
Branches
Tags
No related merge requests found
......@@ -80,21 +80,3 @@
- src: "/usr/lib/x86_64-linux-gnu/libstdc++.so.6"
dest: "/usr/local/lib/callas_pdfEngine_SDK_x64/callas_pdfEngineSDK_x64_Linux_{{ vault_callas_sdk_version }}/lib/libstdc++.so.6"
notify: run ldconfig to configure dynamic linker run-time bindings
# provide fonts for callas
- name: create font-cache folder
file:
path: "/usr/local/share/callas/cache/"
state: directory
mode: "0775"
owner: "www-data"
group: "www-data"
# install applefonts
- name: copy applefonts
unarchive:
src: "applefonts.zip"
dest: "/usr/share/fonts/truetype/"
follow: "yes"
notify:
- run fc-cache to rebuild font information cache files and add applefonts
---
# provide fonts for callas
- name: create font-cache folder
file:
path: "/usr/local/share/callas/cache/"
state: directory
mode: "0775"
owner: "www-data"
group: "www-data"
# install applefonts
- name: copy applefonts
unarchive:
src: "applefonts.zip"
dest: "/usr/share/fonts/truetype/"
follow: "yes"
notify:
- run fc-cache to rebuild font information cache files and add applefonts
......@@ -29,6 +29,10 @@
#import_tasks: install-callas-pdf-engine.yml
#tags: [callaspdf]
- name: install fonts
import_tasks: install_fonts.yml
tags: [fonts]
- name: install validators
import_tasks: install-validators.yml
tags: [validators]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment