Ensure lib64 ld-linux symlinks exists
This commit is contained in:
parent
424dc5d8ee
commit
1ee35d9ea4
|
@ -3,6 +3,7 @@
|
||||||
### Enhancements
|
### Enhancements
|
||||||
* Ensure to install requirements on Debian Stretch.
|
* Ensure to install requirements on Debian Stretch.
|
||||||
* Empty requirements packages by default cause `lsb-compat` is no longer available on Debian Buster.
|
* Empty requirements packages by default cause `lsb-compat` is no longer available on Debian Buster.
|
||||||
|
* Ensure lib64 ld-linux symlinks exists.
|
||||||
|
|
||||||
## v2.1.4
|
## v2.1.4
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
|
@ -65,6 +65,7 @@ This role will :
|
||||||
* Copy vendor daemon binaries to the host if source is specified.
|
* Copy vendor daemon binaries to the host if source is specified.
|
||||||
* Copy licence file 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 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**.
|
The `lmgrd` and `lmutil` binaries comes from [Mathworks][mathworks download url] in version **flexlm__lmgrd_version**.
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,16 @@
|
||||||
dest: /usr/tmp
|
dest: /usr/tmp
|
||||||
state: link
|
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
|
# lmgrd and lmutil binaries [[[1
|
||||||
- name: Add lmgrd bin
|
- name: Add lmgrd bin
|
||||||
copy:
|
copy:
|
||||||
|
|
Loading…
Reference in New Issue