Ensure lib64 ld-linux symlinks exists

This commit is contained in:
Jeremy Gardais 2020-05-07 11:23:13 +02:00
parent 424dc5d8ee
commit 1ee35d9ea4
3 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,7 @@
### Enhancements
* Ensure to install requirements on Debian Stretch.
* Empty requirements packages by default cause `lsb-compat` is no longer available on Debian Buster.
* Ensure lib64 ld-linux symlinks exists.
## v2.1.4
### Enhancements

View File

@ -65,6 +65,7 @@ This role will:
* Copy vendor daemon binaries to the host if source is specified.
* Copy licence file to the host if source is specified.
* Create a symlink (/usr/tmp) to /tmp to avoid error.
* Create a symlinks to ld-linux librairies.
The `lmgrd` and `lmutil` binaries comes from [Mathworks][mathworks download url] in version **flexlm__lmgrd_version**.

View File

@ -40,6 +40,16 @@
dest: /usr/tmp
state: link
# Create a symlink for libs [[[1
- name: Symlinks to /lib64/ld-linux-x86-64.so.2
file:
src: /lib64/ld-linux-x86-64.so.2
dest: '{{ item }}'
state: link
with_items:
- /lib64/ld-lsb-x86-64.so.2
- /lib64/ld-lsb-x86-64.so.3
# lmgrd and lmutil binaries [[[1
- name: Add lmgrd bin
copy: