first commit

This commit is contained in:
bzoicas
2026-03-13 11:09:33 +02:00
commit 255fd3c079
170 changed files with 8640 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
- name: system setup | clock | install systemd-timesyncd (ubuntu)
tags: ntp,system setup
package:
name: systemd-timesyncd
state: latest
when: ansible_distribution in ["Pop!_OS", "Ubuntu"]
# Currently systemd-timesyncd for debian is available only in buster-backports
- name: system setup | clock | install systemd-timesyncd (debian)
tags: ntp,system setup
apt:
name: systemd-timesyncd
default_release: buster-backports
state: latest
when: ansible_distribution == "Debian"
- name: system setup | clock | start and enable systemd-timesyncd
tags: ntp,system settiings
service:
name: systemd-timesyncd
state: started
enabled: true
- name: system setup | clock | set time zone
tags: ntp,timezone,system setup
timezone:
name: "Europe/Bucharest"