weitere Aenderungen

This commit is contained in:
2021-02-25 09:37:42 +01:00
parent db70a6c417
commit 17b4ed6ef6
50 changed files with 946 additions and 4 deletions

View File

@@ -1,11 +0,0 @@
- name: system setup | package cleanup | remove unneeded packages (debian, ubuntu, etc. )
tags: cleanup,packages,system,settings
package:
state: absent
name:
- cowsay
- exim4
- exim4-base
- exim4-config
- nano
when: ansible_distribution in ["Debian", "Pop!_OS", "Ubuntu"]

View File

@@ -1,27 +0,0 @@
- 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-packports
state: latest
when: ansible_distribution == "Debian"
- name: system setup | clock | start and enable systemd-timestampd
tags: ntp,system setup
service:
name: systemd-timesyncd
state: started
enabled: true
- name: system setup | clock | set time zone
tags: tnp,timezone,system setup
timezone:
name: "Europe/Berlin"