8 lines
195 B
YAML
8 lines
195 B
YAML
|
---
|
||
|
- name: restart systemd-timesyncd.service
|
||
|
become: true
|
||
|
ansible.builtin.systemd:
|
||
|
name: systemd-timesyncd
|
||
|
state: restarted
|
||
|
when: not ansible_facts['virtualization_type'] == "lxc"
|