7 lines
145 B
YAML
7 lines
145 B
YAML
|
|
---
|
||
|
|
- name: restart patching services
|
||
|
|
ansible.builtin.service:
|
||
|
|
name: "{{ item }}"
|
||
|
|
state: restarted
|
||
|
|
loop: "{{ services_to_restart }}"
|