7 lines
282 B
YAML
7 lines
282 B
YAML
---
|
|
- name: Restart socat socket for {{ socat_service_name }}
|
|
ansible.builtin.set_fact:
|
|
systemd_restart_units: "{{ systemd_restart_units + [socat_service_name ~ '-socat.socket'] }}" # noqa: var-naming[no-role-prefix]
|
|
changed_when: true
|
|
notify: Apply systemd unit restarts
|