commited current state (new functions, may not work by now)

This commit is contained in:
Ansible Servercow
2025-10-08 09:32:02 +02:00
parent e5f83941b9
commit b21a80af07
54 changed files with 1381 additions and 74 deletions

View File

@@ -0,0 +1,26 @@
- name: Purge systemd-timesyncd
ansible.builtin.apt:
name: systemd-timesyncd
state: absent
purge: true
- name: Setup Chrony
ansible.builtin.apt:
name: chrony
state: present
update_cache: yes
- name: Configure Chrony
ansible.builtin.copy:
dest: /etc/chrony/chrony.conf
content: |
server ntp.as208016.net iburst
pool de.pool.ntp.org iburst
driftfile /var/lib/chrony/drift
makestep 1.0 3
rtcsync
owner: root
group: root
mode: '0644'
notify:
- Restart chronyd