parent
a8a6192cdc
commit
f7f230589b
|
@ -1,8 +1,10 @@
|
||||||
|
|
||||||
## v2.x
|
## v2.x
|
||||||
|
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
* Add a missing ")" in the handler.
|
* Add a missing ")" in the handler.
|
||||||
|
* Create a symlink (/usr/tmp) to /tmp to avoid error (fix #2).
|
||||||
|
|
||||||
## v2.0
|
## v2.0
|
||||||
|
|
||||||
|
|
|
@ -64,6 +64,7 @@ This role will :
|
||||||
* Set up a systemd service (flexlm-item.name). [Thanks to Kalebo instructions][kalebo instruction flexlm systemd].
|
* Set up a systemd service (flexlm-item.name). [Thanks to Kalebo instructions][kalebo instruction flexlm systemd].
|
||||||
* 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.
|
||||||
|
|
||||||
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**.
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,13 @@
|
||||||
createhome: False
|
createhome: False
|
||||||
system: True
|
system: True
|
||||||
|
|
||||||
|
# Create a symlink for /tmp [[[1
|
||||||
|
- name: Symlink /usr/tmp
|
||||||
|
file:
|
||||||
|
src: /tmp
|
||||||
|
dest: /usr/tmp
|
||||||
|
state: link
|
||||||
|
|
||||||
# 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