Files
2025-11-21 14:30:18 +01:00

13 lines
349 B
YAML

---
- name: Eintrag in /etc/ssh/ssh_config hinzufuegen
blockinfile:
path: /etc/ssh/ssh_config
block: |
Host {{ ssh_config_git_host }}
Port {{ ssh_config_git_port }}
marker: "# {mark} ANSIBLE SSH CONFIG BLOCK"
- name: Benoetigte Pakete installieren
package:
name: "{{ grundsoftware_packages }}"
state: present