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