Skip to content
Snippets Groups Projects
Commit 305403fc authored by Jörg Sachse's avatar Jörg Sachse
Browse files

feat: discard any traces of NTP configs

parent 46c712d2
Branches
No related tags found
No related merge requests found
...@@ -8,7 +8,17 @@ ...@@ -8,7 +8,17 @@
state: absent state: absent
purge: "{{ true if ansible_os_family == 'Debian' else omit }}" purge: "{{ true if ansible_os_family == 'Debian' else omit }}"
# details can be found at sdvuda10 project, issue #2 - name: purge NTP configuration
ansible.builtin.file:
path: "{{ item }}"
state: absent
loop:
- "/etc/cron.daily/ntp"
- "/etc/ntp.conf"
- "/etc/ntpsec/ntp.conf"
# details can be found at sdvgubs10 project, issue #2
# https://git.slub-dresden.de/slub-referat-2-4/sdvgubs10
- name: make sure open-vm-tools are installed - name: make sure open-vm-tools are installed
ansible.builtin.package: ansible.builtin.package:
name: "open-vm-tools" name: "open-vm-tools"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment