Erste Version, die direkt funktioniert

This commit is contained in:
Frank Schiebel 2025-08-06 08:46:39 +02:00
parent efd48de6c7
commit 1d41476110
4 changed files with 26 additions and 11 deletions

View file

@ -5,14 +5,14 @@
mode: '0644'
content: >
{{ apt_conf }}
when: apt_conf | bool | default(false)
when: apt_conf is defined
- name: Set NTP server
ansible.builtin.lineinfile:
path: /etc/systemd/timesyncd.conf
insertafter: '^#NTP='
line: NTP={{ ntp_serv }}
when: ntp_serv | bool | default(false)
when: ntp_serv is defined
- name: Add proposed-updates repository
ansible.builtin.apt_repository: