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

fix: ND-1993 - improve task names

parent 19f84997
Branches
No related tags found
No related merge requests found
---
### APACHE KONFIGURIEREN ###
- name: Konfigurationsdateien einspielen (copied)
- name: Apache-Konfigurationsdateien einspielen (copied)
copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
......@@ -12,7 +12,7 @@
notify:
- restart apache
- name: Konfigurationsdateien einspielen (templated)
- name: Apache-Konfigurationsdateien einspielen (templated)
template:
src: "{{ item.src }}.j2"
dest: "{{ item.dest }}"
......
---
- name: tmpfs
- name: Mount tmpfs for non-persistent and fast /tmp directory
mount:
boot: "yes"
fstype: "tmpfs"
......
......@@ -37,7 +37,7 @@
path: "/usr/local/lib/callas_pdfEngineSDK_x64_Linux_{{ vault_callas_sdk_version }}.tar.gz"
state: absent
- name: set permissions
- name: set permissions for PDFEngine
file:
path: "/usr/local/lib/callas_pdfEngine_SDK_x64"
group: "www-data"
......@@ -53,7 +53,7 @@
- "lib"
- "lang"
- name: remove symlinks to distro version of libstdc++
- name: remove symlinks to distro version of libstdc++, because we need to use what's provided with PDFEngine
file:
path: "{{ item }}"
state: absent
......@@ -61,12 +61,7 @@
- "/usr/local/lib/callas_pdfEngine_SDK_x64/lib/libstdc++.so"
- "/usr/local/lib/callas_pdfEngine_SDK_x64/lib/libstdc++.so.6"
- name: install packages
apt:
name: "libstdc++-8-dev"
state: present
- name: create symlinks to system libraries
- name: create symlinks to system libraries, because we need to use what's provided with PDFEngine
file:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment