homeserver/playbooks/on-off/remove_ntpd.yml
mg ce709e7918 systemd: chrony --> timesyncd (#329)
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: mg/ansible#329
Co-authored-by: mg <michael.grote@posteo.de>
Co-committed-by: mg <michael.grote@posteo.de>
2022-02-18 20:34:43 +01:00

19 lines
355 B
YAML

---
- hosts: all
tasks:
- name: ntp deinstallieren
become: yes
ansible.builtin.package:
name: ntp
state: absent
- name: config file
become: yes
file:
path: /etc/ntp.conf
state: absent
- name: config folder
become: yes
file:
path: /var/lib/ntp
state: absent