parent
a8a6192cdc
commit
f9551ffa1d
|
@ -1,8 +1,10 @@
|
|||
|
||||
## v2.x
|
||||
|
||||
|
||||
### Fixes
|
||||
* Add a missing ")" in the handler.
|
||||
* Create a symlink (/usr/tmp) to /tmp to avoid error (fix #2).
|
||||
|
||||
## 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].
|
||||
* 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.
|
||||
|
||||
The `lmgrd` and `lmutil` binaries comes from [Mathworks][mathworks download url] in version **flexlm__lmgrd_version**.
|
||||
|
||||
|
|
|
@ -19,6 +19,13 @@
|
|||
createhome: False
|
||||
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
|
||||
- name: Add lmgrd bin
|
||||
copy:
|
||||
|
|
Loading…
Reference in New Issue