Fix E303 systemctl used in place of systemd module
This commit is contained in:
parent
67b3cbc635
commit
f85fd58bad
|
@ -1,6 +1,7 @@
|
||||||
## v2.1.2
|
## v2.1.2
|
||||||
|
|
||||||
* Fix E405 Remote package tasks should have a retry.
|
* Fix E405 Remote package tasks should have a retry.
|
||||||
|
* Fix E303 systemctl used in place of systemd module.
|
||||||
|
|
||||||
## v2.1.1
|
## v2.1.1
|
||||||
|
|
||||||
|
|
|
@ -93,8 +93,9 @@
|
||||||
when: ( (flexlm__deploy_state == "present") and
|
when: ( (flexlm__deploy_state == "present") and
|
||||||
( item.service | d(True) ))
|
( item.service | d(True) ))
|
||||||
|
|
||||||
- name: Reload systemd daemons
|
- name: Force systemd to reread configs
|
||||||
command: systemctl daemon-reload
|
systemd:
|
||||||
|
daemon_reload: True
|
||||||
notify: ['restart flexlm services']
|
notify: ['restart flexlm services']
|
||||||
when: ( flexlm__register_service|changed )
|
when: ( flexlm__register_service|changed )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue