9 lines
260 B
YAML
9 lines
260 B
YAML
- hosts: "{{ variable_host | default(lab15_standard) }}"
|
|
gather_facts: no
|
|
become: yes
|
|
tasks:
|
|
- name: matlab change licence from 27000 to 27001
|
|
replace:
|
|
path: /opt/matlab/R2020b/licenses/network.lic
|
|
regexp: '27000'
|
|
replace: '27001' |